[commit] r2056 - trunk/GME/Gme

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue Sep 18 09:51:57 CDT 2012


Author: ksmyth
Date: Tue Sep 18 09:51:57 2012
New Revision: 2056

Log:
Use unicode arrow instead of ->

Modified:
   trunk/GME/Gme/GUIObject.cpp

Modified: trunk/GME/Gme/GUIObject.cpp
==============================================================================
--- trunk/GME/Gme/GUIObject.cpp	Tue Sep 18 09:51:48 2012	(r2055)
+++ trunk/GME/Gme/GUIObject.cpp	Tue Sep 18 09:51:57 2012	(r2056)
@@ -2008,9 +2008,9 @@
 {
 	CString txt;
 	if(IsNull())
-		txt = name + _T(" -> null ");
+		txt = name + L" \u2192 null ";
 	else
-		txt.Format(_T("%s -> %s (%s) "), name, targetName, targetKindDisplayedName);
+		txt.Format(L"%s \u2192 %s (%s) ", name, targetName, targetKindDisplayedName);
 	return CString(txt);
 }
 ///////////////////////////////////////


More information about the gme-commit mailing list