summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/MCursor.cc
Unidiff
Diffstat (limited to 'noncore/games/kbill/MCursor.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kbill/MCursor.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/games/kbill/MCursor.cc b/noncore/games/kbill/MCursor.cc
index c581693..93dd559 100644
--- a/noncore/games/kbill/MCursor.cc
+++ b/noncore/games/kbill/MCursor.cc
@@ -20,7 +20,8 @@
20#include <kapp.h> 20#include <kapp.h>
21#include <kstandarddirs.h> 21#include <kstandarddirs.h>
22#endif 22#endif
23#include <iostream> 23#include <opie2/odebug.h>
24using namespace Opie::Core;
24#include <qpe/resource.h> 25#include <qpe/resource.h>
25MCursor::~MCursor() { 26MCursor::~MCursor() {
26 delete cursor; 27 delete cursor;
@@ -37,14 +38,14 @@ void MCursor::load(const char *name, int masked) {
37 38
38 QBitmap bitmap, mask; 39 QBitmap bitmap, mask;
39 if (bitmap.load(file) == FALSE) { 40 if (bitmap.load(file) == FALSE) {
40 std::cerr << "cannot open " << file << std::endl; 41 oerr << "cannot open " << file << oendl;
41 exit(1); 42 exit(1);
42 } 43 }
43 if (masked == SEP_MASK) { 44 if (masked == SEP_MASK) {
44 // mfile.sprintf ("%sbitmaps/%s_mask.xbm", (const char*)dir, name); 45 // mfile.sprintf ("%sbitmaps/%s_mask.xbm", (const char*)dir, name);
45 mfile = file = dirs.findResource("data","kbill/bitmaps/" + QString::fromLocal8Bit(name) + "_mask.xbm"); 46 mfile = file = dirs.findResource("data","kbill/bitmaps/" + QString::fromLocal8Bit(name) + "_mask.xbm");
46 if (mask.load(mfile) == FALSE) { 47 if (mask.load(mfile) == FALSE) {
47 std::cerr << "cannot open " << file << std::endl; 48 oerr << "cannot open " << file << oendl;
48 exit(1); 49 exit(1);
49 } 50 }
50 } 51 }