summaryrefslogtreecommitdiff
path: root/noncore
authordrw <drw>2005-05-20 21:17:24 (UTC)
committer drw <drw>2005-05-20 21:17:24 (UTC)
commit5e7bbe42671f565bef961b44862ddbf68beed774 (patch) (unidiff)
treeccf157157cec64314bae8cbdf846dd9ccefdd4a6 /noncore
parent3394f57eac978fa97ad60fb96bebc67b3783cfc6 (diff)
downloadopie-5e7bbe42671f565bef961b44862ddbf68beed774.zip
opie-5e7bbe42671f565bef961b44862ddbf68beed774.tar.gz
opie-5e7bbe42671f565bef961b44862ddbf68beed774.tar.bz2
Resource -> OResource
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/snake/interface.cpp8
-rw-r--r--noncore/games/snake/obstacle.cpp6
-rw-r--r--noncore/games/snake/snake.cpp5
-rw-r--r--noncore/games/snake/target.cpp4
4 files changed, 10 insertions, 13 deletions
diff --git a/noncore/games/snake/interface.cpp b/noncore/games/snake/interface.cpp
index 9d9550a..1eeb337 100644
--- a/noncore/games/snake/interface.cpp
+++ b/noncore/games/snake/interface.cpp
@@ -22,3 +22,3 @@
22 22
23#include <qpe/resource.h> 23#include <opie2/oresource.h>
24 24
@@ -33,3 +33,3 @@ SnakeGame::SnakeGame(QWidget* parent, const char* name, WFlags f) :
33 QPEApplication::setInputMethodHint(this, QPEApplication::AlwaysOff ); 33 QPEApplication::setInputMethodHint(this, QPEApplication::AlwaysOff );
34 QPixmap bg = Resource::loadPixmap("snake/grass"); 34 QPixmap bg = Opie::Core::OResource::loadPixmap("snake/grass");
35 canvas.setBackgroundPixmap(bg); 35 canvas.setBackgroundPixmap(bg);
@@ -48,3 +48,3 @@ SnakeGame::SnakeGame(QWidget* parent, const char* name, WFlags f) :
48 48
49 QPixmap newicon = Resource::loadPixmap("ksnake"); 49 QPixmap newicon = Opie::Core::OResource::loadPixmap("ksnake");
50 setIcon(newicon); 50 setIcon(newicon);
@@ -88,3 +88,3 @@ void SnakeGame::welcomescreen()
88 title->show(); 88 title->show();
89 QCanvasPixmapArray* titlearray = new QCanvasPixmapArray(Resource::findPixmap("snake/title")); 89 QCanvasPixmapArray* titlearray = new QCanvasPixmapArray(Opie::Core::OResource::findPixmap("snake/title"));
90 QCanvasSprite* titlepic = new QCanvasSprite(titlearray, &canvas); 90 QCanvasSprite* titlepic = new QCanvasSprite(titlearray, &canvas);
diff --git a/noncore/games/snake/obstacle.cpp b/noncore/games/snake/obstacle.cpp
index 4bdefa5..4639f5c 100644
--- a/noncore/games/snake/obstacle.cpp
+++ b/noncore/games/snake/obstacle.cpp
@@ -23,5 +23,3 @@
23 23
24#include <qpe/resource.h> 24#include <opie2/oresource.h>
25
26
27 25
@@ -35,3 +33,3 @@ void Obstacle::newObstacle(int y)
35{ 33{
36 QPixmap obstaclePix( Resource::findPixmap("snake/wall.png") ); 34 QPixmap obstaclePix( Opie::Core::OResource::findPixmap("snake/wall") );
37 35
diff --git a/noncore/games/snake/snake.cpp b/noncore/games/snake/snake.cpp
index 8a683ab..802951c 100644
--- a/noncore/games/snake/snake.cpp
+++ b/noncore/games/snake/snake.cpp
@@ -23,4 +23,3 @@
23 23
24#include <qpe/resource.h> 24#include <opie2/oresource.h>
25
26 25
@@ -41,3 +40,3 @@ void Snake::createSnake()
41 snakeparts = new QCanvasPixmapArray(); 40 snakeparts = new QCanvasPixmapArray();
42 QString s0 = Resource::findPixmap("snake/s0001"); 41 QString s0 = Opie::Core::OResource::findPixmap("snake/s0001");
43 s0.replace(QRegExp("0001"),"%1"); 42 s0.replace(QRegExp("0001"),"%1");
diff --git a/noncore/games/snake/target.cpp b/noncore/games/snake/target.cpp
index a09af69..f20eb93 100644
--- a/noncore/games/snake/target.cpp
+++ b/noncore/games/snake/target.cpp
@@ -23,3 +23,3 @@
23 23
24#include <qpe/resource.h> 24#include <opie2/oresource.h>
25 25
@@ -30,3 +30,3 @@ Target::Target(QCanvas* canvas)
30{ 30{
31 mouse = new QCanvasPixmapArray(Resource::findPixmap("snake/mouse")); 31 mouse = new QCanvasPixmapArray(Opie::Core::OResource::findPixmap("snake/mouse"));
32 setSequence(mouse); 32 setSequence(mouse);