From 3558cf0e5ee9abed62ee8d358c5f03dfca242b3b Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 2 Jan 2009 22:16:33 +0000 Subject: Cleanup. svn-id: r35687 --- gui/ThemeEngine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gui') diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index 4ee8bc2332..6e622ac758 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -1096,7 +1096,7 @@ Common::String ThemeEngine::genCacheFilename(const char *filename) { } } - return ""; + return Common::String(); } @@ -1169,7 +1169,7 @@ void ThemeEngine::listUsableThemes(Common::List &list) { ThemeDescriptor th; th.name = "ScummVM Classic Theme (Builtin Version)"; th.id = "builtin"; - th.filename = ""; + th.filename.clear(); list.push_back(th); #endif @@ -1275,7 +1275,7 @@ Common::String ThemeEngine::getThemeFile(const Common::String &id) { // our default theme which would mean "scummmodern" instead // of the builtin one. if (id.equalsIgnoreCase("default")) - return ""; + return Common::String(); Common::FSNode node(id); @@ -1299,7 +1299,7 @@ Common::String ThemeEngine::getThemeFile(const Common::String &id) { // If no matching id has been found we will // just fall back to the builtin theme - return ""; + return Common::String(); } Common::String ThemeEngine::getThemeId(const Common::String &filename) { -- cgit v1.2.3