[Scummvm-cvs-logs] scummvm master -> 04d50f370385fe7a30d758c9af19ef6c26947ed4

sev- sev at scummvm.org
Sat Mar 17 11:56:42 CET 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
04d50f3703 COMMON: Use String class consistently


Commit: 04d50f370385fe7a30d758c9af19ef6c26947ed4
    https://github.com/scummvm/scummvm/commit/04d50f370385fe7a30d758c9af19ef6c26947ed4
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2012-03-17T03:55:51-07:00

Commit Message:
COMMON: Use String class consistently

Changed paths:
    common/rendermode.cpp



diff --git a/common/rendermode.cpp b/common/rendermode.cpp
index 1ca67c1..e8f3146 100644
--- a/common/rendermode.cpp
+++ b/common/rendermode.cpp
@@ -99,7 +99,7 @@ const char *getRenderModeDescription(RenderMode id) {
 }
 
 String renderMode2GUIO(RenderMode id) {
-	Common::String res;
+	String res;
 
 	for (int i = 0; i < ARRAYSIZE(s_renderGUIOMapping); i++) {
 		if (id == s_renderGUIOMapping[i].id)
@@ -110,7 +110,7 @@ String renderMode2GUIO(RenderMode id) {
 }
 
 String allRenderModesGUIOs() {
-	Common::String res;
+	String res;
 
 	for (int i = 0; i < ARRAYSIZE(s_renderGUIOMapping); i++) {
 		res += s_renderGUIOMapping[i].guio;






More information about the Scummvm-git-logs mailing list