summaryrefslogtreecommitdiff
path: root/noncore/apps/dagger/navbar.cpp
authordrw <drw>2005-04-24 19:29:20 (UTC)
committer drw <drw>2005-04-24 19:29:20 (UTC)
commit9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b (patch) (side-by-side diff)
treeef243e01fd5347d74d06e7d90e9c3fc19d990534 /noncore/apps/dagger/navbar.cpp
parentd1ca2bbae79743f9f8a2c5ac1d702cc1c789fd27 (diff)
downloadopie-9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b.zip
opie-9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b.tar.gz
opie-9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b.tar.bz2
Resource -> OResource
Diffstat (limited to 'noncore/apps/dagger/navbar.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/dagger/navbar.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/noncore/apps/dagger/navbar.cpp b/noncore/apps/dagger/navbar.cpp
index 97761f7..ac49613 100644
--- a/noncore/apps/dagger/navbar.cpp
+++ b/noncore/apps/dagger/navbar.cpp
@@ -19,2 +19,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
+#include <opie2/oresource.h>
+
#include <qpe/config.h>
@@ -26,2 +28,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc.,
+using Opie::Core::OResource;
+
NavBar::NavBar( QMainWindow *parent )
@@ -30,3 +34,3 @@ NavBar::NavBar( QMainWindow *parent )
// Initialize UI
- m_actionPrevPage = new QAction( tr( "Previous page" ), Resource::loadPixmap( "fastback" ),
+ m_actionPrevPage = new QAction( tr( "Previous page" ), OResource::loadPixmap( "fastback", OResource::SmallIcon ),
QString::null, 0, this, 0 );
@@ -36,3 +40,3 @@ NavBar::NavBar( QMainWindow *parent )
- m_actionPrevVerse = new QAction( tr( "Previous verse" ), Resource::loadPixmap( "back" ),
+ m_actionPrevVerse = new QAction( tr( "Previous verse" ), OResource::loadPixmap( "back", OResource::SmallIcon ),
QString::null, 0, this, 0 );
@@ -47,3 +51,3 @@ NavBar::NavBar( QMainWindow *parent )
- m_actionNextVerse = new QAction( tr( "Next verse" ), Resource::loadPixmap( "forward" ),
+ m_actionNextVerse = new QAction( tr( "Next verse" ), OResource::loadPixmap( "forward", OResource::SmallIcon ),
QString::null, 0, this, 0 );
@@ -53,3 +57,3 @@ NavBar::NavBar( QMainWindow *parent )
- m_actionNextPage = new QAction( tr( "Next page" ), Resource::loadPixmap( "fastforward" ),
+ m_actionNextPage = new QAction( tr( "Next page" ), OResource::loadPixmap( "fastforward", OResource::SmallIcon ),
QString::null, 0, this, 0 );
@@ -66,3 +70,3 @@ NavBar::NavBar( QMainWindow *parent )
- m_actionScroll = new QAction( tr( "Auto-scroll" ), Resource::loadPixmap( "dagger/autoscroll" ),
+ m_actionScroll = new QAction( tr( "Auto-scroll" ), OResource::loadPixmap( "dagger/autoscroll", OResource::SmallIcon ),
QString::null, 0, this, 0 );