summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/Picture.cc
Unidiff
Diffstat (limited to 'noncore/games/kbill/Picture.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kbill/Picture.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/games/kbill/Picture.cc b/noncore/games/kbill/Picture.cc
index 9d46257..cf96ddf 100644
--- a/noncore/games/kbill/Picture.cc
+++ b/noncore/games/kbill/Picture.cc
@@ -13,14 +13,14 @@
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17#include "Picture.h" 17#include "Picture.h"
18 18
19#include <iostream> 19#include <opie2/odebug.h>
20 20using namespace Opie::Core;
21#include <qpe/resource.h> 21#include <qpe/resource.h>
22#ifdef KDEVER 22#ifdef KDEVER
23#include <kapp.h> 23#include <kapp.h>
24#include <kstandarddirs.h> 24#include <kstandarddirs.h>
25#include <kdebug.h> 25#include <kdebug.h>
26#endif 26#endif
@@ -45,13 +45,13 @@ void Picture::load(const char *name, int index) {
45 } else { 45 } else {
46 file = dirs.findResource("data","kbill/pixmaps/" + QString::fromLocal8Bit(name) + ".xpm"); 46 file = dirs.findResource("data","kbill/pixmaps/" + QString::fromLocal8Bit(name) + ".xpm");
47 } 47 }
48 kdDebug() << file << std::endl; 48 kdDebug() << file << std::endl;
49 pix = new QPixmap(); 49 pix = new QPixmap();
50 if (pix->load(file) == FALSE) 50 if (pix->load(file) == FALSE)
51 std::cerr << "cannot open " << file << std::endl; 51 oerr << "cannot open " << file << oendl;
52 width = pix->width(); 52 width = pix->width();
53 height = pix->height(); 53 height = pix->height();
54#endif 54#endif
55QString sindex; 55QString sindex;
56pix = new QPixmap(); 56pix = new QPixmap();
57sindex.setNum(index); 57sindex.setNum(index);