diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-26 09:01:57 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-26 09:01:57 +0000 |
commit | 693f0e6b0a6ed86c6cf5c2888c311822d3133e51 (patch) | |
tree | 736e0a511146fa83ceb082e3f2f01a34f72cd572 /goodies | |
parent | 77ad65d66dbbd0d69d9adef9d2f9f4740e7e7773 (diff) |
INTEGRATION: CWS residcleanup (1.7.72); FILE MERGED
2007/02/18 19:58:12 pl 1.7.72.1: #i74635# get rid of implicit global ResMgr
Diffstat (limited to 'goodies')
-rw-r--r-- | goodies/source/inv/score.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/goodies/source/inv/score.cxx b/goodies/source/inv/score.cxx index c0845001455c..1bd114a0e9ab 100644 --- a/goodies/source/inv/score.cxx +++ b/goodies/source/inv/score.cxx @@ -4,9 +4,9 @@ * * $RCSfile: score.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: obo $ $Date: 2006-09-17 15:55:39 $ + * last change: $Author: rt $ $Date: 2007-04-26 10:01:57 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -73,17 +73,17 @@ void ScoreWindow::Paint(const Rectangle&) } if(nHero) - DrawText(Point(0,0),String(ResId(nHero, pRes))); + DrawText(Point(0,0),String(ResId(nHero, *pRes))); - DrawText(Point(180,0),String(ResId(STR_ROCKETS, pRes))); + DrawText(Point(180,0),String(ResId(STR_ROCKETS, *pRes))); - DrawText(Point(300,0),String(ResId(STR_FIGHTER, pRes))); + DrawText(Point(300,0),String(ResId(STR_FIGHTER, *pRes))); DrawText(Point(370,0),String::CreateFromInt32(nLives)); - DrawText(Point(400,0),String(ResId(STR_LEVEL, pRes))); + DrawText(Point(400,0),String(ResId(STR_LEVEL, *pRes))); DrawText(Point(460,0),String::CreateFromInt32(nLevel)); - DrawText(Point(500,0),String(ResId(STR_SCORE, pRes))); + DrawText(Point(500,0),String(ResId(STR_SCORE, *pRes))); String aString = String::CreateFromInt32(nScore); if ( aString.Len() < 7 ) { |