author | mickeyl <mickeyl> | 2004-04-09 14:06:05 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-09 14:06:05 (UTC) |
commit | 5f294a018a0f44a6547485bc73a095cd0c153903 (patch) (unidiff) | |
tree | ea19ba0afea3e8d4a226719a3590cf11e5fc5178 | |
parent | 208a155ee480e5c1ae0fd6e8876a6ffea7f1c4a5 (diff) | |
download | opie-5f294a018a0f44a6547485bc73a095cd0c153903.zip opie-5f294a018a0f44a6547485bc73a095cd0c153903.tar.gz opie-5f294a018a0f44a6547485bc73a095cd0c153903.tar.bz2 |
libopie1 --> libopie2
-rw-r--r-- | noncore/apps/opie-gutenbrowser/browserDialog.cpp | 7 | ||||
-rw-r--r-- | noncore/apps/opie-gutenbrowser/config.in | 6 | ||||
-rw-r--r-- | noncore/apps/opie-gutenbrowser/openetext.cpp | 9 | ||||
-rw-r--r-- | noncore/apps/opie-gutenbrowser/opie-gutenbrowser.pro | 5 |
4 files changed, 16 insertions, 11 deletions
diff --git a/noncore/apps/opie-gutenbrowser/browserDialog.cpp b/noncore/apps/opie-gutenbrowser/browserDialog.cpp index 5c48da1..81dd516 100644 --- a/noncore/apps/opie-gutenbrowser/browserDialog.cpp +++ b/noncore/apps/opie-gutenbrowser/browserDialog.cpp | |||
@@ -8,13 +8,16 @@ copyright 2001 by L.J. Potter ljp@llornkcor.com | |||
8 | #include "optionsDialog.h" | 8 | #include "optionsDialog.h" |
9 | //#include "fileBrowser.h" | 9 | //#include "fileBrowser.h" |
10 | 10 | ||
11 | /* OPIE */ | ||
12 | #include <opie2/ofiledialog.h> | ||
13 | using namespace Opie::Ui; | ||
14 | |||
15 | /* QT */ | ||
11 | #include <qlabel.h> | 16 | #include <qlabel.h> |
12 | #include <qlistbox.h> | 17 | #include <qlistbox.h> |
13 | #include <qpushbutton.h> | 18 | #include <qpushbutton.h> |
14 | #include <qlayout.h> | 19 | #include <qlayout.h> |
15 | 20 | ||
16 | #include <opie/ofiledialog.h> | ||
17 | |||
18 | void optionsDialog::BrowserDlg( ) | 21 | void optionsDialog::BrowserDlg( ) |
19 | { | 22 | { |
20 | // setCaption( tr( "Choose Browser" ) ); | 23 | // setCaption( tr( "Choose Browser" ) ); |
diff --git a/noncore/apps/opie-gutenbrowser/config.in b/noncore/apps/opie-gutenbrowser/config.in index ec67d6e..d2a3033 100644 --- a/noncore/apps/opie-gutenbrowser/config.in +++ b/noncore/apps/opie-gutenbrowser/config.in | |||
@@ -1,4 +1,6 @@ | |||
1 | config OPIE-GUTENBROWSER | 1 | config GUTENBROWSER |
2 | boolean "gutenbrowser - Gutenberg Project etext reader and selector" | 2 | boolean "gutenbrowser - Gutenberg Project etext reader and selector" |
3 | default "n" | 3 | default "n" |
4 | depends ( LIBQPE || LIBQPE-X11 ) && FTPLIB | 4 | depends ( LIBQPE || LIBQPE-X11 ) && FTPLIB && LIBOPIE2CORE && LIBOPIE2UI |
5 | comment "gutenbrowser needs a libqpe, ftplib, libopie2core and libopie2ui" | ||
6 | depends !(( LIBQPE || LIBQPE-X11 ) && FTPLIB && LIBOPIE2CORE && LIBOPIE2UI) | ||
diff --git a/noncore/apps/opie-gutenbrowser/openetext.cpp b/noncore/apps/opie-gutenbrowser/openetext.cpp index 40f35d6..bd44ce6 100644 --- a/noncore/apps/opie-gutenbrowser/openetext.cpp +++ b/noncore/apps/opie-gutenbrowser/openetext.cpp | |||
@@ -16,15 +16,16 @@ | |||
16 | #include "openetext.h" | 16 | #include "openetext.h" |
17 | #include "editTitle.h" | 17 | #include "editTitle.h" |
18 | 18 | ||
19 | #include <qfileinfo.h> | 19 | /* OPIE */ |
20 | #include <opie2/ofiledialog.h> | ||
20 | #include <qpe/applnk.h> | 21 | #include <qpe/applnk.h> |
22 | #include <qpe/config.h> | ||
21 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | using namespace Opie::Ui; | ||
22 | 25 | ||
23 | #include <stdlib.h> | 26 | #include <stdlib.h> |
24 | #include <qtextstream.h> | 27 | #include <qtextstream.h> |
25 | #include <qpe/config.h> | 28 | #include <qfileinfo.h> |
26 | |||
27 | #include <opie/ofiledialog.h> | ||
28 | 29 | ||
29 | #if defined(_WS_WIN_) | 30 | #if defined(_WS_WIN_) |
30 | #include <windows.h> | 31 | #include <windows.h> |
diff --git a/noncore/apps/opie-gutenbrowser/opie-gutenbrowser.pro b/noncore/apps/opie-gutenbrowser/opie-gutenbrowser.pro index e34e922..5c1d0c4 100644 --- a/noncore/apps/opie-gutenbrowser/opie-gutenbrowser.pro +++ b/noncore/apps/opie-gutenbrowser/opie-gutenbrowser.pro | |||
@@ -1,6 +1,5 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release quick-app | 2 | CONFIG += qt warn_on quick-app |
3 | #CONFIG += qt warn_on release qpp | ||
4 | HEADERS = LibraryDialog.h \ | 3 | HEADERS = LibraryDialog.h \ |
5 | SearchDialog.h \ | 4 | SearchDialog.h \ |
6 | SearchResults.h \ | 5 | SearchResults.h \ |
@@ -40,6 +39,6 @@ TARGET = gutenbrowser | |||
40 | INCLUDEPATH += $(OPIEDIR)/include | 39 | INCLUDEPATH += $(OPIEDIR)/include |
41 | DEPENDPATH += $(OPIEDIR)/include | 40 | DEPENDPATH += $(OPIEDIR)/include |
42 | DESTDIR = $(OPIEDIR)/bin | 41 | DESTDIR = $(OPIEDIR)/bin |
43 | LIBS += -lqpe -lpthread -lftplib -lopie | 42 | LIBS += -lqpe -lpthread -lftplib -lopiecore2 -lopieui2 |
44 | 43 | ||
45 | include ( $(OPIEDIR)/include.pro ) | 44 | include ( $(OPIEDIR)/include.pro ) |