diff options
author | Eugene Sandulenko | 2007-10-28 12:04:38 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-10-28 12:04:38 +0000 |
commit | 61c96353cf0cc5b418ad64af2c607309221409d4 (patch) | |
tree | f469afa1d819b20ef6fbb66157e146f5f867901b /common | |
parent | 4073e7f8f8b3a9af6e302c062362c5004ba8bcba (diff) | |
download | scummvm-rg350-61c96353cf0cc5b418ad64af2c607309221409d4.tar.gz scummvm-rg350-61c96353cf0cc5b418ad64af2c607309221409d4.tar.bz2 scummvm-rg350-61c96353cf0cc5b418ad64af2c607309221409d4.zip |
Patch v5.2 from #1752243: "backends lib patches"
svn-id: r29283
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h index 600b2ed76e..f19f6efc2c 100644 --- a/common/system.h +++ b/common/system.h @@ -886,6 +886,17 @@ public: */ virtual Common::SaveFileManager *getSavefileManager() = 0; + + /** + * Return String which is used for backend-specific addition to theme + * config. + * + * Typical usage is to disable unneeded GUI widgets or defining + * theme-specific tab. + */ + virtual Common::String getExtraThemeConfig() { + return ""; + } //@} }; |