author | drw <drw> | 2005-05-23 23:49:14 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-23 23:49:14 (UTC) |
commit | f5d45036d2a444f9ee27311895c430babcf947e5 (patch) (side-by-side diff) | |
tree | 69a1ba1227931cccce2d916c6e0fd7dcc6ccd003 | |
parent | a04b6cb80be1c2df466b69ed40450820056aff06 (diff) | |
download | opie-f5d45036d2a444f9ee27311895c430babcf947e5.zip opie-f5d45036d2a444f9ee27311895c430babcf947e5.tar.gz opie-f5d45036d2a444f9ee27311895c430babcf947e5.tar.bz2 |
Remove unnecessary include and fix compiler warning
-rw-r--r-- | noncore/tools/formatter/formatter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/noncore/tools/formatter/formatter.cpp b/noncore/tools/formatter/formatter.cpp index 642196e..2b8cca2 100644 --- a/noncore/tools/formatter/formatter.cpp +++ b/noncore/tools/formatter/formatter.cpp @@ -4,25 +4,24 @@ ** Copyright: Thu Apr 11 11:01:13 2002 ** by: L. J. Potter ** ****************************************************************************/ #include "formatter.h" #include "inputDialog.h" #include "output.h" /* OPIE */ #include <opie2/odebug.h> #include <qpe/qpeapplication.h> -#include <qpe/resource.h> #include <qpe/config.h> #include <qpe/mimetype.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/storage.h> using namespace Opie::Core; /* QT */ #include <qmenubar.h> #include <qmultilineedit.h> #include <qstring.h> #include <qlist.h> #include <qstringlist.h> @@ -47,25 +46,25 @@ using namespace Opie::Core; #include <stdio.h> #include <stdlib.h> #include <sys/vfs.h> #include <mntent.h> #include <string.h> #include <errno.h> #define BLANK ' ' #define DELIMITER '#' /* Blah blah blah blah */ -FormatterApp::FormatterApp( QWidget* parent, const char* name, WFlags fl, bool modal ) +FormatterApp::FormatterApp( QWidget* parent, const char* name, WFlags fl, bool /*modal*/ ) : QMainWindow( parent, name, fl ) // : QDialog( parent, name, modal, fl ) { if ( !name ) setName( "FormatterApp" ); connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); setCaption( tr( "Formatter" ) ); FormatterAppLayout = new QGridLayout( this ); FormatterAppLayout->setSpacing( 2); FormatterAppLayout->setMargin( 2 ); |