-rw-r--r-- | noncore/apps/confedit/confedit.pro | 14 | ||||
-rw-r--r-- | noncore/apps/confedit/listviewitemconf.cpp | 9 | ||||
-rw-r--r-- | noncore/apps/confedit/main.cpp | 5 | ||||
-rw-r--r-- | noncore/apps/confedit/mainwindow.cpp | 13 |
4 files changed, 27 insertions, 14 deletions
diff --git a/noncore/apps/confedit/confedit.pro b/noncore/apps/confedit/confedit.pro index f6227f7..d2629de 100644 --- a/noncore/apps/confedit/confedit.pro +++ b/noncore/apps/confedit/confedit.pro | |||
@@ -8,4 +8,4 @@ INCLUDEPATH += $(OPIEDIR)/include | |||
8 | DEPENDPATH+= $(OPIEDIR)/ioclude | 8 | DEPENDPATH+= $(OPIEDIR)/ioclude |
9 | LIBS += -lqpe | ||
10 | INTERFACES= | 9 | INTERFACES= |
10 | LIBS += -lopiecore2 -lopieui2 | ||
11 | TARGET = confedit | 11 | TARGET = confedit |
@@ -31,3 +31,13 @@ TRANSLATIONS = ../../../i18n/de/confedit.ts \ | |||
31 | 31 | ||
32 | !contains( platform, x11 ) { | ||
33 | |||
34 | include ( $(OPIEDIR)/include.pro ) | ||
35 | LIBS += -lqpe | ||
36 | } | ||
37 | |||
38 | contains( platform, x11 ) { | ||
39 | LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib | ||
40 | } | ||
41 | |||
42 | |||
32 | 43 | ||
33 | include ( $(OPIEDIR)/include.pro ) | ||
diff --git a/noncore/apps/confedit/listviewitemconf.cpp b/noncore/apps/confedit/listviewitemconf.cpp index 91edca2..61bd7ea 100644 --- a/noncore/apps/confedit/listviewitemconf.cpp +++ b/noncore/apps/confedit/listviewitemconf.cpp | |||
@@ -15,3 +15,3 @@ ListViewItemConf::ListViewItemConf(ListViewItemConf *parent) | |||
15 | } | 15 | } |
16 | 16 | ||
17 | ListViewItemConf::ListViewItemConf(QListView *parent) | 17 | ListViewItemConf::ListViewItemConf(QListView *parent) |
@@ -21,3 +21,3 @@ ListViewItemConf::ListViewItemConf(QListView *parent) | |||
21 | } | 21 | } |
22 | 22 | ||
23 | ListViewItemConf::~ListViewItemConf() | 23 | ListViewItemConf::~ListViewItemConf() |
@@ -50,2 +50,5 @@ bool ListViewItemConf::revertable() | |||
50 | return _changed; | 50 | return _changed; |
51 | } \ No newline at end of file | 51 | } |
52 | |||
53 | |||
54 | |||
diff --git a/noncore/apps/confedit/main.cpp b/noncore/apps/confedit/main.cpp index 6c18adb..7e7f064 100644 --- a/noncore/apps/confedit/main.cpp +++ b/noncore/apps/confedit/main.cpp | |||
@@ -3,3 +3,3 @@ | |||
3 | 3 | ||
4 | #include <qpe/qpeapplication.h> | 4 | #include <opie2/oapplication.h> |
5 | 5 | ||
@@ -7,4 +7,3 @@ int main( int argc, char ** argv ) | |||
7 | { | 7 | { |
8 | 8 | OApplication a( argc, argv, "confedit" ); | |
9 | QPEApplication a( argc, argv ); | ||
10 | MainWindow mw; | 9 | MainWindow mw; |
diff --git a/noncore/apps/confedit/mainwindow.cpp b/noncore/apps/confedit/mainwindow.cpp index 8e36980..58538af 100644 --- a/noncore/apps/confedit/mainwindow.cpp +++ b/noncore/apps/confedit/mainwindow.cpp | |||
@@ -14,8 +14,8 @@ | |||
14 | 14 | ||
15 | #include <qpe/qpemenubar.h> | 15 | #include <opie2/omenubar.h> |
16 | #include <qpe/qpemessagebox.h> | 16 | #include <opie2/omessagebox.h> |
17 | #include <qpe/resource.h> | 17 | #include <opie2/oresource.h> |
18 | #include <qpe/config.h> | 18 | #include <opie2/oconfig.h> |
19 | #include <qpe/qpetoolbar.h> | 19 | #include <opie2/otoolbar.h> |
20 | #include <qpe/qpeapplication.h> | 20 | #include <opie2/oapplication.h> |
21 | #include <qaction.h> | 21 | #include <qaction.h> |
@@ -30,2 +30,3 @@ | |||
30 | #include <qlineedit.h> | 30 | #include <qlineedit.h> |
31 | #include <qcursor.h> | ||
31 | 32 | ||