author | chicken <chicken> | 2004-03-01 19:15:57 (UTC) |
---|---|---|
committer | chicken <chicken> | 2004-03-01 19:15:57 (UTC) |
commit | fb0981f47e529f9d1dd77fa005ffa3c3ecedff67 (patch) (unidiff) | |
tree | c338eb54935bbbe8966d5a642303d4aae3c1f0c8 | |
parent | b5a544bf520ce6d0d8f7b314720e6a703079dc1d (diff) | |
download | opie-fb0981f47e529f9d1dd77fa005ffa3c3ecedff67.zip opie-fb0981f47e529f9d1dd77fa005ffa3c3ecedff67.tar.gz opie-fb0981f47e529f9d1dd77fa005ffa3c3ecedff67.tar.bz2 |
fix includes
-rw-r--r-- | noncore/apps/opie-console/atconfigdialog.cpp | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/keytrans.cpp | 3 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/atconfigdialog.cpp b/noncore/apps/opie-console/atconfigdialog.cpp index e683ab3..8e91b9e 100644 --- a/noncore/apps/opie-console/atconfigdialog.cpp +++ b/noncore/apps/opie-console/atconfigdialog.cpp | |||
@@ -1,20 +1,19 @@ | |||
1 | 1 | ||
2 | #include <qlineedit.h> | 2 | #include <qlineedit.h> |
3 | #include <qspinbox.h> | 3 | #include <qspinbox.h> |
4 | #include <qlayout.h> | 4 | #include <qlayout.h> |
5 | #include <qcombobox.h> | 5 | #include <qcombobox.h> |
6 | #include <qtabwidget.h> | 6 | #include <qtabwidget.h> |
7 | #include <qlabel.h> | 7 | #include <qlabel.h> |
8 | #include <qcombobox.h> | ||
9 | #include <qscrollview.h> | 8 | #include <qscrollview.h> |
10 | 9 | ||
11 | #include "atconfigdialog.h" | 10 | #include "atconfigdialog.h" |
12 | #include "io_modem.h" | 11 | #include "io_modem.h" |
13 | 12 | ||
14 | 13 | ||
15 | ATConfigDialog::ATConfigDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) | 14 | ATConfigDialog::ATConfigDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) |
16 | : QDialog( parent, name, modal, fl ) { | 15 | : QDialog( parent, name, modal, fl ) { |
17 | 16 | ||
18 | 17 | ||
19 | setCaption( tr( "Dialing parameter setup" ) ); | 18 | setCaption( tr( "Dialing parameter setup" ) ); |
20 | 19 | ||
diff --git a/noncore/apps/opie-console/keytrans.cpp b/noncore/apps/opie-console/keytrans.cpp index d569ae0..45a7960 100644 --- a/noncore/apps/opie-console/keytrans.cpp +++ b/noncore/apps/opie-console/keytrans.cpp | |||
@@ -404,25 +404,25 @@ Loop: | |||
404 | buf->close(); | 404 | buf->close(); |
405 | return; | 405 | return; |
406 | 406 | ||
407 | ERROR: | 407 | ERROR: |
408 | while (sym != SYMEol && sym != SYMEof) getSymbol(); // eoln | 408 | while (sym != SYMEol && sym != SYMEof) getSymbol(); // eoln |
409 | goto Loop; | 409 | goto Loop; |
410 | } | 410 | } |
411 | 411 | ||
412 | 412 | ||
413 | KeyTrans* KeyTrans::defaultKeyTrans() | 413 | KeyTrans* KeyTrans::defaultKeyTrans() |
414 | { | 414 | { |
415 | QCString txt = | 415 | QCString txt = |
416 | #include "default.keytab.h" | 416 | #include "default.keytab.h" |
417 | ; | 417 | ; |
418 | QBuffer buf(txt); | 418 | QBuffer buf(txt); |
419 | return fromDevice("[buildin]",buf); | 419 | return fromDevice("[buildin]",buf); |
420 | } | 420 | } |
421 | 421 | ||
422 | KeyTrans* KeyTrans::fromFile(const char* path) | 422 | KeyTrans* KeyTrans::fromFile(const char* path) |
423 | { | 423 | { |
424 | QFile file(path); | 424 | QFile file(path); |
425 | return fromDevice(path,file); | 425 | return fromDevice(path,file); |
426 | } | 426 | } |
427 | 427 | ||
428 | // local symbol tables --------------------------------------------------------------------- | 428 | // local symbol tables --------------------------------------------------------------------- |
@@ -688,19 +688,18 @@ void TestTokenizer(QBuffer &buf) | |||
688 | // Test tokenizer | 688 | // Test tokenizer |
689 | 689 | ||
690 | while (getSymbol(buf)) ReportToken(); | 690 | while (getSymbol(buf)) ReportToken(); |
691 | 691 | ||
692 | buf.close(); | 692 | buf.close(); |
693 | } | 693 | } |
694 | 694 | ||
695 | void test() | 695 | void test() |
696 | { | 696 | { |
697 | // Opening sequence | 697 | // Opening sequence |
698 | 698 | ||
699 | QCString txt = | 699 | QCString txt = |
700 | #include "default.keytab.h" | ||
701 | ; | 700 | ; |
702 | QBuffer buf(txt); | 701 | QBuffer buf(txt); |
703 | if (0) TestTokenizer(buf); | 702 | if (0) TestTokenizer(buf); |
704 | if (1) { KeyTrans kt; kt.scanTable(buf); } | 703 | if (1) { KeyTrans kt; kt.scanTable(buf); } |
705 | } | 704 | } |
706 | */ | 705 | */ |
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 0a475d8..1d2385f 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -1,23 +1,22 @@ | |||
1 | #include <assert.h> | 1 | #include <assert.h> |
2 | 2 | ||
3 | #include <qaction.h> | 3 | #include <qaction.h> |
4 | #include <qmenubar.h> | 4 | #include <qmenubar.h> |
5 | #include <qtoolbar.h> | 5 | #include <qtoolbar.h> |
6 | #include <qmessagebox.h> | 6 | #include <qmessagebox.h> |
7 | #include <qwhatsthis.h> | 7 | #include <qwhatsthis.h> |
8 | #include <qfileinfo.h> | 8 | #include <qfileinfo.h> |
9 | 9 | ||
10 | #include <qpe/filemanager.h> | 10 | #include <qpe/filemanager.h> |
11 | #include <qpe/qpeapplication.h> | ||
12 | 11 | ||
13 | #include <opie2/ofiledialog.h> | 12 | #include <opie2/ofiledialog.h> |
14 | 13 | ||
15 | #include "TEmulation.h" | 14 | #include "TEmulation.h" |
16 | #include "profileeditordialog.h" | 15 | #include "profileeditordialog.h" |
17 | #include "configdialog.h" | 16 | #include "configdialog.h" |
18 | #include "default.h" | 17 | #include "default.h" |
19 | #include "profilemanager.h" | 18 | #include "profilemanager.h" |
20 | #include "mainwindow.h" | 19 | #include "mainwindow.h" |
21 | #include "tabwidget.h" | 20 | #include "tabwidget.h" |
22 | #include "transferdialog.h" | 21 | #include "transferdialog.h" |
23 | #include "function_keyboard.h" | 22 | #include "function_keyboard.h" |