author | llornkcor <llornkcor> | 2003-05-26 13:20:00 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-05-26 13:20:00 (UTC) |
commit | a93082fccebd06538e13a6a8c7f2d2b36d07077e (patch) (unidiff) | |
tree | c26bea621739ada51546d5a10b2b59fa8bcef33d | |
parent | cf116ca13c0f1b67d9ead91786d247e996ca2dea (diff) | |
download | opie-a93082fccebd06538e13a6a8c7f2d2b36d07077e.zip opie-a93082fccebd06538e13a6a8c7f2d2b36d07077e.tar.gz opie-a93082fccebd06538e13a6a8c7f2d2b36d07077e.tar.bz2 |
fix compile
-rw-r--r-- | noncore/todayplugins/stockticker/stockticker/inputDialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/todayplugins/stockticker/stockticker/inputDialog.cpp b/noncore/todayplugins/stockticker/stockticker/inputDialog.cpp index 42a3885..71dd7eb 100644 --- a/noncore/todayplugins/stockticker/stockticker/inputDialog.cpp +++ b/noncore/todayplugins/stockticker/stockticker/inputDialog.cpp | |||
@@ -1,36 +1,37 @@ | |||
1 | #include "inputDialog.h" | 1 | #include "inputDialog.h" |
2 | 2 | ||
3 | #include <qapplication.h> | 3 | #include <qapplication.h> |
4 | 4 | ||
5 | #include <qlayout.h> | ||
5 | #include <qcheckbox.h> | 6 | #include <qcheckbox.h> |
6 | #include <qlineedit.h> | 7 | #include <qlineedit.h> |
7 | #include <qvariant.h> | 8 | #include <qvariant.h> |
8 | #include <qpushbutton.h> | 9 | #include <qpushbutton.h> |
9 | #include <qwhatsthis.h> | 10 | #include <qwhatsthis.h> |
10 | #include <qlabel.h> | 11 | #include <qlabel.h> |
11 | #include <qpe/config.h> | 12 | #include <qpe/config.h> |
12 | #include <qstringlist.h> | 13 | #include <qstringlist.h> |
13 | #include <qmainwindow.h> | 14 | #include <qmainwindow.h> |
14 | #include "helpwindow.h" | 15 | #include "helpwindow.h" |
15 | 16 | ||
16 | #include <opie/oprocess.h> | 17 | #include <opie/oprocess.h> |
17 | 18 | ||
18 | #include <stdlib.h> | 19 | #include <stdlib.h> |
19 | // #include <sys/stat.h> | 20 | // #include <sys/stat.h> |
20 | // #include <unistd.h> | 21 | // #include <unistd.h> |
21 | 22 | ||
22 | InputDialog::InputDialog( ) | 23 | InputDialog::InputDialog( ) |
23 | : QMainWindow( 0x0, 0x0, WStyle_ContextHelp ) { | 24 | : QMainWindow( 0x0, 0x0, WStyle_ContextHelp ) { |
24 | setCaption( tr("Symbol Lookup")); | 25 | setCaption( tr("Symbol Lookup")); |
25 | 26 | ||
26 | QGridLayout *layout = new QGridLayout( this ); | 27 | QGridLayout *layout = new QGridLayout( this ); |
27 | layout->setSpacing(6); | 28 | layout->setSpacing(6); |
28 | layout->setMargin( 2); | 29 | layout->setMargin( 2); |
29 | 30 | ||
30 | LineEdit1 = new QLineEdit( this, "LineEdit1" ); | 31 | LineEdit1 = new QLineEdit( this, "LineEdit1" ); |
31 | LineEdit1->setFocus(); | 32 | LineEdit1->setFocus(); |
32 | 33 | ||
33 | layout->addMultiCellWidget( LineEdit1, 0, 0, 0, 3); | 34 | layout->addMultiCellWidget( LineEdit1, 0, 0, 0, 3); |
34 | 35 | ||
35 | QLabel *label; | 36 | QLabel *label; |
36 | label = new QLabel(this); | 37 | label = new QLabel(this); |