diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-05-28 06:57:25 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-05-28 06:57:25 +0000 |
commit | 08dc85b7e47d45f56873d4b999676e98d3cea160 (patch) | |
tree | ee8f57541304cf1b21e6539eb271cb11c55c2635 /goodies | |
parent | f8147a8b5850b212e7bed44670b361f3cc5ed3c9 (diff) |
INTEGRATION: CWS pj90 (1.3.186); FILE MERGED
2008/04/19 08:44:52 pjanik 1.3.186.2: RESYNC: (1.3-1.4); FILE MERGED
2008/04/19 08:36:13 pjanik 1.3.186.1: #i85735#: Use long instead of USHORT.
Diffstat (limited to 'goodies')
-rw-r--r-- | goodies/source/inv/score.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/goodies/source/inv/score.hxx b/goodies/source/inv/score.hxx index a8fe4979f8b6..ec09135550f0 100644 --- a/goodies/source/inv/score.hxx +++ b/goodies/source/inv/score.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: score.hxx,v $ - * $Revision: 1.4 $ + * $Revision: 1.5 $ * * This file is part of OpenOffice.org. * @@ -37,8 +37,8 @@ class ScoreWindow : public Window { private: long nHero; - USHORT nRockets; - USHORT nLives; + long nRockets; + long nLives; long nScore; long nLevel; ResMgr* pRes; @@ -50,8 +50,8 @@ class ScoreWindow : public Window ~ScoreWindow(); virtual void Paint(const Rectangle& rRect); void SetHero(long nName); - void SetRockets(USHORT nWert); - void SetLives(USHORT nWert); + void SetRockets(long nWert); + void SetLives(long nWert); void SetScore(long nWert); void SetLevel(long nWert); |