summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/config.in2
-rw-r--r--core/pim/osearch/main.cpp3
-rw-r--r--core/pim/osearch/searchgroup.cpp4
3 files changed, 5 insertions, 4 deletions
diff --git a/core/pim/osearch/config.in b/core/pim/osearch/config.in
index 8d51307..8a162d4 100644
--- a/core/pim/osearch/config.in
+++ b/core/pim/osearch/config.in
@@ -1,4 +1,4 @@
1 config OSEARCH 1 config OSEARCH
2 boolean "opie-osearch (searches throught your PDA)" 2 boolean "opie-osearch (searches throught your PDA)"
3 default "y" 3 default "y"
4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE 4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIEUI2 && LIBOPIEPIM2
diff --git a/core/pim/osearch/main.cpp b/core/pim/osearch/main.cpp
index e0a2de3..c440c6a 100644
--- a/core/pim/osearch/main.cpp
+++ b/core/pim/osearch/main.cpp
@@ -1,6 +1,7 @@
1 1
2#include "mainwindow.h" 2#include "mainwindow.h"
3 3
4#include <opie/oapplicationfactory.h> 4#include <opie2/oapplicationfactory.h>
5 5
6using namespace Opie::Core;
6OPIE_EXPORT_APP( OApplicationFactory<MainWindow> ) 7OPIE_EXPORT_APP( OApplicationFactory<MainWindow> )
diff --git a/core/pim/osearch/searchgroup.cpp b/core/pim/osearch/searchgroup.cpp
index 7a0b5a7..9166f72 100644
--- a/core/pim/osearch/searchgroup.cpp
+++ b/core/pim/osearch/searchgroup.cpp
@@ -14,13 +14,13 @@
14 14
15#include <opie2/owait.h> 15#include <opie2/owait.h>
16 16
17#include <qapplication.h> 17#include <qapplication.h>
18 18
19#ifndef NEW_OWAIT 19#ifndef NEW_OWAIT
20static OWait *wait = 0; 20static Opie::Ui::OWait *wait = 0;
21#endif 21#endif
22 22
23SearchGroup::SearchGroup(QListView* parent, QString name) 23SearchGroup::SearchGroup(QListView* parent, QString name)
24: OListViewItem(parent, name) 24: OListViewItem(parent, name)
25{ 25{
26 _name = name; 26 _name = name;
@@ -65,13 +65,13 @@ void SearchGroup::setSearch(QRegExp re)
65} 65}
66 66
67int SearchGroup::realSearch() 67int SearchGroup::realSearch()
68{ 68{
69 if (_lastSearch == _search) return _resultCount; 69 if (_lastSearch == _search) return _resultCount;
70#ifndef NEW_OWAIT 70#ifndef NEW_OWAIT
71 if (!wait) wait = new OWait( qApp->mainWidget(), "osearch" ); 71 if (!wait) wait = new Opie::Ui::OWait( qApp->mainWidget(), "osearch" );
72 wait->show(); 72 wait->show();
73 qApp->processEvents(); 73 qApp->processEvents();
74#else 74#else
75 qDebug("********** NEW_OWAIT *************"); 75 qDebug("********** NEW_OWAIT *************");
76 OWait( "searching" ); 76 OWait( "searching" );
77#endif 77#endif