summaryrefslogtreecommitdiff
path: root/core/apps/textedit/main.cpp
Unidiff
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
@@ -10,26 +10,26 @@
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "textedit.h" 21#include "textedit.h"
22 22
23#include <qpe/qpeapplication.h> 23#include <qpe/qpeapplication.h>
24 24
25int main( int argc, char **argv ) 25int main( int argc, char **argv )
26{ 26{
27 QPEApplication a( argc, argv ); 27 QPEApplication a( argc, argv );
28 28
29 TextEdit e; 29 TextEdit e;
30 a.showMainDocumentWidget(&e); 30 a.showMainDocumentWidget(&e);
31// if ( argc == 3 && argv[1] == QCString("-f") ) 31// if ( argc == 3 && argv[1] == QCString("-f") )
32// e.openFile(argv[2]); 32// e.openFile(argv[2]);
33 33
34 a.exec(); 34 return a.exec();
35} 35}