diff options
author | Max Horn | 2006-05-04 22:52:18 +0000 |
---|---|---|
committer | Max Horn | 2006-05-04 22:52:18 +0000 |
commit | 6321cfc874ee95b9b2471783a18f4173fb60ab78 (patch) | |
tree | d656ceb19a97ef038c61390e316aa6d50e63c6dc /gui/launcher.h | |
parent | c319e972467beb3b824af01bc707ea225c38572e (diff) | |
download | scummvm-rg350-6321cfc874ee95b9b2471783a18f4173fb60ab78.tar.gz scummvm-rg350-6321cfc874ee95b9b2471783a18f4173fb60ab78.tar.bz2 scummvm-rg350-6321cfc874ee95b9b2471783a18f4173fb60ab78.zip |
Turned the last remaining few GameDetector methods into static methods
svn-id: r22344
Diffstat (limited to 'gui/launcher.h')
-rw-r--r-- | gui/launcher.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gui/launcher.h b/gui/launcher.h index b5320937c4..7b456a2dbd 100644 --- a/gui/launcher.h +++ b/gui/launcher.h @@ -25,8 +25,6 @@ #include "gui/dialog.h" #include "common/str.h" -class GameDetector; - namespace GUI { class BrowserDialog; @@ -37,7 +35,7 @@ class LauncherDialog : public Dialog { typedef Common::String String; typedef Common::StringList StringList; public: - LauncherDialog(GameDetector &detector); + LauncherDialog(); ~LauncherDialog(); virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data); @@ -51,7 +49,6 @@ protected: GraphicsWidget *_logo; #endif StringList _domains; - GameDetector &_detector; BrowserDialog *_browser; virtual void handleScreenChanged(); |