summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/MCursor.cc
authormickeyl <mickeyl>2005-01-15 23:07:36 (UTC)
committer mickeyl <mickeyl>2005-01-15 23:07:36 (UTC)
commit972d0500299d6bed8e0890810f9c120390268dcf (patch) (side-by-side diff)
treef38d1a12f290d4e47c012483a113a67b7dfc2f30 /noncore/games/kbill/MCursor.cc
parent490b0398b7e11f1485b902a6d9b99b9152be2492 (diff)
downloadopie-972d0500299d6bed8e0890810f9c120390268dcf.zip
opie-972d0500299d6bed8e0890810f9c120390268dcf.tar.gz
opie-972d0500299d6bed8e0890810f9c120390268dcf.tar.bz2
kbill no longer needs STL
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 @@
#include <kapp.h>
#include <kstandarddirs.h>
#endif
-#include <iostream>
+#include <opie2/odebug.h>
+using namespace Opie::Core;
#include <qpe/resource.h>
MCursor::~MCursor() {
delete cursor;
@@ -37,14 +38,14 @@ void MCursor::load(const char *name, int masked) {
QBitmap bitmap, mask;
if (bitmap.load(file) == FALSE) {
- std::cerr << "cannot open " << file << std::endl;
+ oerr << "cannot open " << file << oendl;
exit(1);
}
if (masked == SEP_MASK) {
// mfile.sprintf ("%sbitmaps/%s_mask.xbm", (const char*)dir, name);
mfile = file = dirs.findResource("data","kbill/bitmaps/" + QString::fromLocal8Bit(name) + "_mask.xbm");
if (mask.load(mfile) == FALSE) {
- std::cerr << "cannot open " << file << std::endl;
+ oerr << "cannot open " << file << oendl;
exit(1);
}
}