diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-09 18:39:59 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-09 18:39:59 +0000 |
commit | ae08f043bfeb7bb9a1637381bc7e08ef8f631473 (patch) | |
tree | dcabf62b30147918ebde793e61736361feb75cda /Game/Code/Menu | |
parent | 417b8200e765f849e836667d717c4af6e15fcbf6 (diff) | |
download | usdx-ae08f043bfeb7bb9a1637381bc7e08ef8f631473.tar.gz usdx-ae08f043bfeb7bb9a1637381bc7e08ef8f631473.tar.xz usdx-ae08f043bfeb7bb9a1637381bc7e08ef8f631473.zip |
disabled ParseMouse because it is not implemented by any subclass (usage of non-implemented abstract method)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@944 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Menu/UMenu.pas | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Game/Code/Menu/UMenu.pas b/Game/Code/Menu/UMenu.pas index 69ecda44..f028c6d3 100644 --- a/Game/Code/Menu/UMenu.pas +++ b/Game/Code/Menu/UMenu.pas @@ -123,7 +123,9 @@ type function DrawFG: boolean; virtual; function Draw: boolean; virtual; function ParseInput(PressedKey: Cardinal; ScanCode: byte; PressedDown : Boolean): Boolean; virtual; - function ParseMouse(Typ: integer; X: integer; Y: integer): Boolean; virtual; abstract; + // FIXME: ParseMouse is not implemented in any subclass and not even used anywhere in the code + // -> do this before activation of this method + //function ParseMouse(Typ: integer; X: integer; Y: integer): Boolean; virtual; abstract; function InRegion(X1, Y1, X2, Y2, X, Y: real): Boolean; function InStaticRegion(StaticNr: integer; X, Y: integer): Boolean; procedure onShow; virtual; |