[Scummvm-cvs-logs] SF.net SVN: scummvm:[44432] scummvm/trunk/engines/draci

spalek at users.sourceforge.net spalek at users.sourceforge.net
Mon Sep 28 05:06:43 CEST 2009


Revision: 44432
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44432&view=rev
Author:   spalek
Date:     2009-09-28 03:06:43 +0000 (Mon, 28 Sep 2009)

Log Message:
-----------
get rid of static Common::String's

Modified Paths:
--------------
    scummvm/trunk/engines/draci/font.cpp
    scummvm/trunk/engines/draci/font.h

Modified: scummvm/trunk/engines/draci/font.cpp
===================================================================
--- scummvm/trunk/engines/draci/font.cpp	2009-09-28 02:54:38 UTC (rev 44431)
+++ scummvm/trunk/engines/draci/font.cpp	2009-09-28 03:06:43 UTC (rev 44432)
@@ -30,8 +30,8 @@
 
 namespace Draci {
 
-const Common::String kFontSmall("Small.fon");
-const Common::String kFontBig("Big.fon"); 
+const char *kFontSmall = "Small.fon";
+const char *kFontBig = "Big.fon"; 
 
 Font::Font(const Common::String &filename) { 
 

Modified: scummvm/trunk/engines/draci/font.h
===================================================================
--- scummvm/trunk/engines/draci/font.h	2009-09-28 02:54:38 UTC (rev 44431)
+++ scummvm/trunk/engines/draci/font.h	2009-09-28 03:06:43 UTC (rev 44432)
@@ -30,8 +30,8 @@
 
 namespace Draci {
 
-extern const Common::String kFontSmall;
-extern const Common::String kFontBig;
+extern const char *kFontSmall;
+extern const char *kFontBig;
 
 /** 
  *	Default font colours. They all seem to remain constant except for the


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list