Author Topic: Missing _T() in cbprofilerexec.cpp in CVS HEAD  (Read 4138 times)

johnl

  • Guest
Missing _T() in cbprofilerexec.cpp in CVS HEAD
« on: November 01, 2005, 03:50:39 am »
$cvs diff -bu2 codeblocks

Index: codeblocks/src/plugins/contrib/profiler/cbprofilerexec.cpp
===================================================================
RCS file: /cvsroot/codeblocks/codeblocks/src/plugins/contrib/profiler/cbprofilerexec.cpp,v
retrieving revision 1.5
diff -b -u -2 -r1.5 cbprofilerexec.cpp
--- codeblocks/src/plugins/contrib/profiler/cbprofilerexec.cpp  30 Oct 2005 13:22:53 -0000      1.5
+++ codeblocks/src/plugins/contrib/profiler/cbprofilerexec.cpp  1 Nov 2005 02:49:35 -0000
@@ -174,5 +174,5 @@
            item.Clear();
           item.SetId(next);
-          item.SetTextColour(wxTheColourDatabase->Find("GREY"));
+          item.SetTextColour(wxTheColourDatabase->Find(_T("GREY")));
           outputCallGraphArea->SetItem(item);
          }

Regards,
    John Labenski