summaryrefslogtreecommitdiff
path: root/core/apps/textedit/main.cpp
Side-by-side diff
Diffstat (limited to 'core/apps/textedit/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/textedit/main.cpp b/core/apps/textedit/main.cpp
index 4f27667..f80c5d8 100644
--- a/core/apps/textedit/main.cpp
+++ b/core/apps/textedit/main.cpp
@@ -22,14 +22,14 @@
#include <qpe/qpeapplication.h>
int main( int argc, char **argv )
{
QPEApplication a( argc, argv );
TextEdit e;
a.showMainDocumentWidget(&e);
// if ( argc == 3 && argv[1] == QCString("-f") )
// e.openFile(argv[2]);
- a.exec();
+ return a.exec();
}