diff options
author | Max Horn | 2011-02-07 22:58:22 +0000 |
---|---|---|
committer | Max Horn | 2011-02-07 22:58:22 +0000 |
commit | 41121be4d6fecbc727897471e0ceed1fd4c76bd7 (patch) | |
tree | 08ad9d64eb68bc039cc70e29092592cd8f446526 /gui/saveload.h | |
parent | 85aabef6fe370766fa52ba92a7cf63c558bac772 (diff) | |
download | scummvm-rg350-41121be4d6fecbc727897471e0ceed1fd4c76bd7.tar.gz scummvm-rg350-41121be4d6fecbc727897471e0ceed1fd4c76bd7.tar.bz2 scummvm-rg350-41121be4d6fecbc727897471e0ceed1fd4c76bd7.zip |
GUI: Rename SaveLoadChooser::runModal to runModalWithPluginAndTarget
This avoids hiding an overloaded virtual method, which in turn can
cause weird bugs (see also the next commit).
svn-id: r55815
Diffstat (limited to 'gui/saveload.h')
-rw-r--r-- | gui/saveload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/saveload.h b/gui/saveload.h index dde70c9a7a..d8977693bc 100644 --- a/gui/saveload.h +++ b/gui/saveload.h @@ -66,7 +66,7 @@ public: virtual void handleCommand(GUI::CommandSender *sender, uint32 cmd, uint32 data); void setList(const StringArray& list); - int runModal(const EnginePlugin *plugin, const String &target); + int runModalWithPluginAndTarget(const EnginePlugin *plugin, const String &target); void open(); const Common::String &getResultString() const; |