summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/searchbar.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/dagger/searchbar.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/dagger/searchbar.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/noncore/apps/dagger/searchbar.cpp b/noncore/apps/dagger/searchbar.cpp
index b794bfd..b195f67 100644
--- a/noncore/apps/dagger/searchbar.cpp
+++ b/noncore/apps/dagger/searchbar.cpp
@@ -23,5 +23,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
#include <qpe/qpeapplication.h>
-#include <qpe/resource.h>
#include <qaction.h>
@@ -34,6 +33,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
#include <versekey.h>
-using Opie::Core::OResource;
-
void searchCallback( char /*percent*/, void */*userData*/ )
{
@@ -52,6 +49,7 @@ SearchBar::SearchBar( QMainWindow *parent )
this, SLOT(slotTextChanged(const QString &)) );
- m_actionFind = new QAction( tr( "Find" ), OResource::loadPixmap( "find", OResource::SmallIcon ), QString::null,
- 0, this, 0 );
+ m_actionFind = new QAction( tr( "Find" ),
+ Opie::Core::OResource::loadPixmap( "find", Opie::Core::OResource::SmallIcon ),
+ QString::null, 0, this, 0 );
m_actionFind->setEnabled( false );
m_actionFind->addTo( this );
@@ -61,5 +59,6 @@ SearchBar::SearchBar( QMainWindow *parent )
addSeparator();
- m_actionPrev = new QAction( tr( "Previous result" ), OResource::loadPixmap( "back", OResource::SmallIcon ),
+ m_actionPrev = new QAction( tr( "Previous result" ),
+ Opie::Core::OResource::loadPixmap( "back", Opie::Core::OResource::SmallIcon ),
QString::null, 0, this, 0 );
m_actionPrev->setEnabled( false );
@@ -73,5 +72,6 @@ SearchBar::SearchBar( QMainWindow *parent )
connect( m_resultList, SIGNAL(activated(const QString &)), this, SIGNAL(sigResultClicked(const QString &)) );
- m_actionNext = new QAction( tr( "Next result" ), OResource::loadPixmap( "forward", OResource::SmallIcon ),
+ m_actionNext = new QAction( tr( "Next result" ),
+ Opie::Core::OResource::loadPixmap( "forward", Opie::Core::OResource::SmallIcon ),
QString::null, 0, this, 0 );
m_actionNext->setEnabled( false );