aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/surface.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-04-06 12:00:37 +0000
committerFilippos Karapetis2008-04-06 12:00:37 +0000
commit6a9acd7a5e526f06e5fc0757335cd5b09ce34e3c (patch)
treeb9caf82ce1ab0101adb17858c8e27f66b1eea904 /engines/lure/surface.h
parentbd1224e36c86c635d0c8712f2082c9301674f51c (diff)
downloadscummvm-rg350-6a9acd7a5e526f06e5fc0757335cd5b09ce34e3c.tar.gz
scummvm-rg350-6a9acd7a5e526f06e5fc0757335cd5b09ce34e3c.tar.bz2
scummvm-rg350-6a9acd7a5e526f06e5fc0757335cd5b09ce34e3c.zip
Replaced ManagedList with Common::SharedPtr in the rest of the lure engine
svn-id: r31420
Diffstat (limited to 'engines/lure/surface.h')
-rw-r--r--engines/lure/surface.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/lure/surface.h b/engines/lure/surface.h
index 73b7090287..49208fa057 100644
--- a/engines/lure/surface.h
+++ b/engines/lure/surface.h
@@ -28,6 +28,7 @@
#include "common/str.h"
+#include "common/ptr.h"
#include "lure/disk.h"
#include "lure/luredefs.h"
@@ -140,7 +141,8 @@ public:
class CopyProtectionDialog {
private:
Common::RandomSource _rnd;
- ManagedList<Hotspot *> _hotspots;
+ typedef Common::List<Common::SharedPtr<Hotspot> > HotspotsList;
+ HotspotsList _hotspots;
int _charIndex;
void chooseCharacters();