summaryrefslogtreecommitdiff
path: root/core/pim/osearch
Unidiff
Diffstat (limited to 'core/pim/osearch') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/main.cpp11
-rw-r--r--core/pim/osearch/osearch.pro17
2 files changed, 10 insertions, 18 deletions
diff --git a/core/pim/osearch/main.cpp b/core/pim/osearch/main.cpp
index 6c18adb..9a03818 100644
--- a/core/pim/osearch/main.cpp
+++ b/core/pim/osearch/main.cpp
@@ -1,14 +1,7 @@
1 1
2#include "mainwindow.h" 2#include "mainwindow.h"
3 3
4#include <qpe/qpeapplication.h> 4#include <qpe/qpeapplication.h>
5#include <opie/oapplicationfactory.h>
5 6
6int main( int argc, char ** argv ) 7OPIE_EXPORT_APP( OApplicationFactory<MainWindow> )
7{
8
9 QPEApplication a( argc, argv );
10 MainWindow mw;
11 mw.showMaximized();
12 a.showMainDocumentWidget( &mw );
13 return a.exec();
14}
diff --git a/core/pim/osearch/osearch.pro b/core/pim/osearch/osearch.pro
index 2e571e3..c988f48 100644
--- a/core/pim/osearch/osearch.pro
+++ b/core/pim/osearch/osearch.pro
@@ -1,21 +1,13 @@
1DEPENDPATH += $(OPIEDIR)/include 1CONFIG += qt release warn_on quick-app
2LIBS += -lqpe -lopie
3INTERFACES =
4include ( $(OPIEDIR)/include.pro )
5TEMPLATE = app
6CONFIG += debug warn_on qt
7DESTDIR = $(OPIEDIR)/bin
8TARGET = osearch
9INCLUDEPATH = $(OPIEDIR)/include
10SOURCES += main.cpp \ 2SOURCES += main.cpp \
11 mainwindow.cpp \ 3 mainwindow.cpp \
12 olistview.cpp \ 4 olistview.cpp \
13 olistviewitem.cpp \ 5 olistviewitem.cpp \
14 adresssearch.cpp \ 6 adresssearch.cpp \
15 todosearch.cpp \ 7 todosearch.cpp \
16 datebooksearch.cpp \ 8 datebooksearch.cpp \
17 searchgroup.cpp \ 9 searchgroup.cpp \
18 resultitem.cpp \ 10 resultitem.cpp \
19 todoitem.cpp \ 11 todoitem.cpp \
20 contactitem.cpp \ 12 contactitem.cpp \
21 eventitem.cpp \ 13 eventitem.cpp \
@@ -29,12 +21,19 @@ HEADERS += mainwindow.h \
29 adresssearch.h \ 21 adresssearch.h \
30 todosearch.h \ 22 todosearch.h \
31 datebooksearch.h \ 23 datebooksearch.h \
32 searchgroup.h \ 24 searchgroup.h \
33 resultitem.h \ 25 resultitem.h \
34 todoitem.h \ 26 todoitem.h \
35 contactitem.h \ 27 contactitem.h \
36 eventitem.h \ 28 eventitem.h \
37 applnksearch.h \ 29 applnksearch.h \
38 applnkitem.h \ 30 applnkitem.h \
39 doclnkitem.h \ 31 doclnkitem.h \
40 doclnksearch.h 32 doclnksearch.h
33
34 TARGET= osearch
35
36INCLUDEPATH = $(OPIEDIR)/include
37DEPENDPATH += $(OPIEDIR)/include
38LIBS += -lqpe -lopie
39include ( $(OPIEDIR)/include.pro )