summaryrefslogtreecommitdiff
path: root/core/pim/todo/main.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/todo/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/pim/todo/main.cpp b/core/pim/todo/main.cpp
index 58ed45c..7763169 100644
--- a/core/pim/todo/main.cpp
+++ b/core/pim/todo/main.cpp
@@ -18,13 +18,12 @@
**
**********************************************************************/
#include "mainwindow.h"
-#include <qdatetime.h>
#include <qpe/qpeapplication.h>
void myMessages( QtMsgType, const char* ) {
}
@@ -36,13 +35,13 @@ int main( int argc, char **argv )
QTime time;
time.start();
Todo::MainWindow mw;
int t = time.elapsed();
qWarning("QTime %d", t/1000 );
- mw.setCaption("Opie Todolist");
+ mw.setCaption( QObject::tr("Opie Todolist"));
QObject::connect( &a, SIGNAL( flush() ), &mw, SLOT( slotFlush() ) );
QObject::connect( &a, SIGNAL( reload() ), &mw, SLOT( slotReload() ) );
a.showMainWidget(&mw);
return a.exec();