diff options
author | Alyssa Milburn | 2012-08-25 00:07:49 +0200 |
---|---|---|
committer | Alyssa Milburn | 2012-08-25 08:41:21 +0200 |
commit | ba20f1d90dd21986f8eb250e93d794db87b9a51c (patch) | |
tree | 65c48747ca8ae4fd2dd337515804409bc8b64642 /engines/tony | |
parent | f917a4beabff01e85159de6a34fd705470ba993c (diff) | |
download | scummvm-rg350-ba20f1d90dd21986f8eb250e93d794db87b9a51c.tar.gz scummvm-rg350-ba20f1d90dd21986f8eb250e93d794db87b9a51c.tar.bz2 scummvm-rg350-ba20f1d90dd21986f8eb250e93d794db87b9a51c.zip |
TONY: Remove unused members of RMTextItemName.
Diffstat (limited to 'engines/tony')
-rw-r--r-- | engines/tony/font.cpp | 4 | ||||
-rw-r--r-- | engines/tony/font.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/engines/tony/font.cpp b/engines/tony/font.cpp index 7e65369bfc..f83677373f 100644 --- a/engines/tony/font.cpp +++ b/engines/tony/font.cpp @@ -2308,10 +2308,6 @@ bool RMTextItemName::isItemSelected() { return _item != NULL; } -bool RMTextItemName::isNormalItemSelected() { - return _item != NULL && _itemName.length() > 0; -} - /****************************************************************************\ * RMDialogChoice Methods diff --git a/engines/tony/font.h b/engines/tony/font.h index 1e84ecb527..e6543ef5d7 100644 --- a/engines/tony/font.h +++ b/engines/tony/font.h @@ -315,7 +315,6 @@ protected: RMPoint _mpos; RMPoint _curscroll; RMItem *_item; - RMString _itemName; public: RMTextItemName(); @@ -331,7 +330,6 @@ public: RMPoint getHotspot(); RMItem *getSelectedItem(); bool isItemSelected(); - bool isNormalItemSelected(); virtual void removeThis(CORO_PARAM, bool &result) { result = true; |