[sword-cvs] sword/include stringmgr.h,1.1,1.2

sword@www.crosswire.org sword@www.crosswire.org
Mon, 19 Apr 2004 07:27:52 -0700


Update of /cvs/core/sword/include
In directory www:/tmp/cvs-serv23629/include

Modified Files:
	stringmgr.h 
Log Message:
changed StringMgr to camelCase (joachim)

Index: stringmgr.h
===================================================================
RCS file: /cvs/core/sword/include/stringmgr.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- stringmgr.h	17 Apr 2004 17:16:16 -0000	1.1
+++ stringmgr.h	19 Apr 2004 14:27:48 -0000	1.2
@@ -1,6 +1,6 @@
 /******************************************************************************
  *	stringmgr.h - A class which provides string andling functions which can 
- 			reimplemented by frontends
+ *			reimplemented by frontends
  *
  * $Id$
  *
@@ -40,14 +40,14 @@
 	static StringMgr* getSystemStringMgr();
 	/*
 	*/
-	static const bool hasUtf8Support() {
+	static const bool hasUTF8Support() {
 		return getSystemStringMgr()->supportsUnicode();
 	};
 	
 	/** Converts the param to an upper case Utf8 string
 	* @param The text encoded in utf8 which should be turned into an upper case string
 	*/	
-	virtual char* upperUtf8(char*, const unsigned int max = 0);
+	virtual char* upperUTF8(char*, const unsigned int max = 0);
 	/** Converts the param to an uppercase latin1 string
 	* @param The text encoded in latin1 which should be turned into an upper case string
 	*/	
@@ -79,7 +79,7 @@
 	};
 	
 	inline char* toupperstr_utf8( char* t, const unsigned int max = 0 ) {
-		return StringMgr::getSystemStringMgr()->upperUtf8( t, max );
+		return StringMgr::getSystemStringMgr()->upperUTF8( t, max );
 	};
 };
 using namespace utilstr;