aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/eventman.h
diff options
context:
space:
mode:
authorFilippos Karapetis2015-12-06 22:50:41 +0200
committerWillem Jan Palenstijn2015-12-23 21:33:52 +0100
commit62c4acc6b36639ebcbd2d9161af9b563e0c561f1 (patch)
treec447d3569fd79868b6295971789c1caf183ea564 /engines/lab/eventman.h
parent803dbcee90bad321532dea54219697aaec34608a (diff)
downloadscummvm-rg350-62c4acc6b36639ebcbd2d9161af9b563e0c561f1.tar.gz
scummvm-rg350-62c4acc6b36639ebcbd2d9161af9b563e0c561f1.tar.bz2
scummvm-rg350-62c4acc6b36639ebcbd2d9161af9b563e0c561f1.zip
LAB: Change the gadget lists to use Common::List
Diffstat (limited to 'engines/lab/eventman.h')
-rw-r--r--engines/lab/eventman.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/eventman.h b/engines/lab/eventman.h
index 156fb96adc..a156a8a823 100644
--- a/engines/lab/eventman.h
+++ b/engines/lab/eventman.h
@@ -55,10 +55,10 @@ private:
public:
EventManager (LabEngine *vm);
- Gadget *_screenGadgetList;
+ GadgetList *_screenGadgetList;
Gadget *_hitGadget;
- Gadget *checkGadgetHit(Gadget *gadgetList, Common::Point pos);
+ Gadget *checkGadgetHit(GadgetList *gadgetList, Common::Point pos);
void initMouse();
void updateMouse();
void mouseShow();
@@ -67,7 +67,7 @@ public:
void setMousePos(Common::Point pos);
bool mouseButton(uint16 *x, uint16 *y, bool leftButton);
Gadget *mouseGadget();
- void attachGadgetList(Gadget *gadgetList);
+ void attachGadgetList(GadgetList *gadgetList);
void mouseHandler(int flag, Common::Point pos);
bool keyPress(uint16 *keyCode);
bool haveNextChar();