summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/mbox.cpp
Side-by-side diff
Diffstat (limited to 'noncore/tools/opie-sh/mbox.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/opie-sh/mbox.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/noncore/tools/opie-sh/mbox.cpp b/noncore/tools/opie-sh/mbox.cpp
index 04b397d..45145d9 100644
--- a/noncore/tools/opie-sh/mbox.cpp
+++ b/noncore/tools/opie-sh/mbox.cpp
@@ -16,6 +16,8 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include "mbox.h"
+#include <opie2/oresource.h>
+
MBox::MBox(int w, int h, int type, QString title, QString message, QString *btext0, QString *btext1, QString *btext2, QWidget *parent, const char*name, bool modal, WFlags f):QDialog(parent, name, modal, f)
{
QVBoxLayout *layout = new QVBoxLayout(this);
@@ -36,13 +38,13 @@ MBox::MBox(int w, int h, int type, QString title, QString message, QString *btex
switch (type)
{
case 0:
- image->setPixmap(Resource::loadPixmap("opie-sh/info"));
+ image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/info", Opie::Core::OResource::SmallIcon));
break;
case 1:
- image->setPixmap(Resource::loadPixmap("opie-sh/warning"));
+ image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/warning", Opie::Core::OResource::SmallIcon));
break;
case 2:
- image->setPixmap(Resource::loadPixmap("opie-sh/error"));
+ image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/error", Opie::Core::OResource::SmallIcon));
break;
}