summaryrefslogtreecommitdiff
path: root/core/settings/button/buttonutils.cpp
Unidiff
Diffstat (limited to 'core/settings/button/buttonutils.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/button/buttonutils.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/settings/button/buttonutils.cpp b/core/settings/button/buttonutils.cpp
index 9bf4b53..05fa883 100644
--- a/core/settings/button/buttonutils.cpp
+++ b/core/settings/button/buttonutils.cpp
@@ -1,10 +1,11 @@
1#include <stdlib.h> 1#include <stdlib.h>
2 2
3#include <opie2/oresource.h>
4
3#include <qapplication.h> 5#include <qapplication.h>
4#include <qlistview.h> 6#include <qlistview.h>
5#include <qpe/applnk.h> 7#include <qpe/applnk.h>
6#include <qpe/mimetype.h> 8#include <qpe/mimetype.h>
7#include <qpe/resource.h>
8 9
9#include "buttonutils.h" 10#include "buttonutils.h"
10 11
@@ -72,7 +73,8 @@ qCopInfo ButtonUtils::messageToInfo ( const OQCopMessage &c )
72 73
73 for ( const predef_qcop *p = predef; p-> m_text; p++ ) { 74 for ( const predef_qcop *p = predef; p-> m_text; p++ ) {
74 if (( ch == p-> m_channel ) && ( f == p-> m_function )) 75 if (( ch == p-> m_channel ) && ( f == p-> m_function ))
75 return qCopInfo ( qApp-> translate ( "ButtonSettings", p-> m_text ), Resource::loadPixmap ( p-> m_pixmap )); 76 return qCopInfo ( qApp-> translate ( "ButtonSettings", p-> m_text ),
77 Opie::Core::OResource::loadPixmap( p->m_pixmap, Opie::Core::OResource::SmallIcon ) );
76 } 78 }
77 79
78 if ( ch. left ( 16 ) == "QPE/Application/" ) { 80 if ( ch. left ( 16 ) == "QPE/Application/" ) {
@@ -96,7 +98,7 @@ void ButtonUtils::insertActions ( QListViewItem *here )
96{ 98{
97 for ( const predef_qcop *p = predef; p-> m_text; p++ ) { 99 for ( const predef_qcop *p = predef; p-> m_text; p++ ) {
98 QListViewItem *item = new QListViewItem ( here, qApp-> translate ( "ButtonSettings", p-> m_text ), p-> m_channel, p-> m_function ); 100 QListViewItem *item = new QListViewItem ( here, qApp-> translate ( "ButtonSettings", p-> m_text ), p-> m_channel, p-> m_function );
99 item-> setPixmap ( 0, Resource::loadPixmap ( p-> m_pixmap )); 101 item-> setPixmap ( 0, Opie::Core::OResource::loadPixmap( p->m_pixmap, Opie::Core::OResource::SmallIcon ) );
100 } 102 }
101} 103}
102 104