summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-bartender/inputDialog.cpp
authorchicken <chicken>2004-03-01 18:52:44 (UTC)
committer chicken <chicken>2004-03-01 18:52:44 (UTC)
commit54a73e15350ea3cc4886a81572cef6e7876be26a (patch) (unidiff)
treec76d739875a0b90d69394f1894e30b8345c7b23c /noncore/apps/opie-bartender/inputDialog.cpp
parent707d84768f4a3b4ada7435ba4c7451feaa11666c (diff)
downloadopie-54a73e15350ea3cc4886a81572cef6e7876be26a.zip
opie-54a73e15350ea3cc4886a81572cef6e7876be26a.tar.gz
opie-54a73e15350ea3cc4886a81572cef6e7876be26a.tar.bz2
fix includes
Diffstat (limited to 'noncore/apps/opie-bartender/inputDialog.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/inputDialog.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/noncore/apps/opie-bartender/inputDialog.cpp b/noncore/apps/opie-bartender/inputDialog.cpp
index 4f4cb84..29643ff 100644
--- a/noncore/apps/opie-bartender/inputDialog.cpp
+++ b/noncore/apps/opie-bartender/inputDialog.cpp
@@ -7,28 +7,24 @@
7** by: L.J. Potter <ljp@llornkcor.com> 7** by: L.J. Potter <ljp@llornkcor.com>
8** copyright : (C) 2002 by ljp 8** copyright : (C) 2002 by ljp
9 email : ljp@llornkcor.com 9 email : ljp@llornkcor.com
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 ***************************************************************************/ 14 ***************************************************************************/
15 15
16#include "inputDialog.h" 16#include "inputDialog.h"
17 17
18#include <qlineedit.h> 18#include <qlineedit.h>
19#include <qlayout.h>
20#include <qvariant.h>
21#include <qtooltip.h>
22#include <qwhatsthis.h>
23 19
24 20
25InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) 21InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl )
26 : QDialog( parent, name, modal, fl ) 22 : QDialog( parent, name, modal, fl )
27{ 23{
28 if ( !name ) 24 if ( !name )
29 setName( "InputDialog" ); 25 setName( "InputDialog" );
30 resize( 234, 50 ); 26 resize( 234, 50 );
31 setMaximumSize( QSize( 240, 50 ) ); 27 setMaximumSize( QSize( 240, 50 ) );
32 setCaption( tr(name ) ); 28 setCaption( tr(name ) );
33 29
34 LineEdit1 = new QLineEdit( this, "LineEdit1" ); 30 LineEdit1 = new QLineEdit( this, "LineEdit1" );