aboutsummaryrefslogtreecommitdiff
path: root/backends/wince
diff options
context:
space:
mode:
authorMax Horn2006-05-04 22:52:18 +0000
committerMax Horn2006-05-04 22:52:18 +0000
commit6321cfc874ee95b9b2471783a18f4173fb60ab78 (patch)
treed656ceb19a97ef038c61390e316aa6d50e63c6dc /backends/wince
parentc319e972467beb3b824af01bc707ea225c38572e (diff)
downloadscummvm-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 'backends/wince')
-rw-r--r--backends/wince/CELauncherDialog.cpp2
-rw-r--r--backends/wince/CELauncherDialog.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/backends/wince/CELauncherDialog.cpp b/backends/wince/CELauncherDialog.cpp
index 90675fb3da..243b5e5ea3 100644
--- a/backends/wince/CELauncherDialog.cpp
+++ b/backends/wince/CELauncherDialog.cpp
@@ -72,7 +72,7 @@ public:
};
-CELauncherDialog::CELauncherDialog(GameDetector &detector) : GUI::LauncherDialog(detector) {
+CELauncherDialog::CELauncherDialog() : GUI::LauncherDialog() {
}
void CELauncherDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
diff --git a/backends/wince/CELauncherDialog.h b/backends/wince/CELauncherDialog.h
index f612b53b97..7cb54a3f56 100644
--- a/backends/wince/CELauncherDialog.h
+++ b/backends/wince/CELauncherDialog.h
@@ -25,14 +25,13 @@
#include "backends/fs/fs.h"
-#include "base/gameDetector.h"
#include "base/plugins.h"
#include "gui/launcher.h"
class CELauncherDialog : public GUI::LauncherDialog {
public:
- CELauncherDialog(GameDetector &detector);
+ CELauncherDialog();
virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data);
protected:
void addGame();