]> git.saurik.com Git - wxWidgets.git/commitdiff
Unicode markup.
authorWłodzimierz Skiba <abx@abx.art.pl>
Fri, 4 Mar 2005 19:29:28 +0000 (19:29 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Fri, 4 Mar 2005 19:29:28 +0000 (19:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/gizmos/ledctrl.cpp

index a43f5ae5883ca16f6ad44fbd5d5db5475c4b4992..6d946378b73d8f4aee5b33b8e6f89760fd49eb31 100644 (file)
@@ -189,54 +189,54 @@ void wxLEDNumberCtrl::OnPaint(wxPaintEvent &WXUNUSED(event))
     const int DigitCount = m_Value.Len();
     for (int offset=0, i = 0; offset < DigitCount; ++offset, ++i)
     {
-        char c = m_Value.GetChar(offset);
+        wxChar c = m_Value.GetChar(offset);
 
         // Draw faded lines if wanted.
-        if (m_DrawFaded && (c != '.'))
+        if (m_DrawFaded && (c != _T('.')))
             DrawDigit(MemDc, DIGITALL, i);
 
         // Draw the digits.
         switch (c)
         {
-            case '0' :
+            case _T('0') :
                 DrawDigit(MemDc, DIGIT0, i);
                 break;
-            case '1' :
+            case _T('1') :
                 DrawDigit(MemDc, DIGIT1, i);
                 break;
-            case '2' :
+            case _T('2') :
                 DrawDigit(MemDc, DIGIT2, i);
                 break;
-            case '3' :
+            case _T('3') :
                 DrawDigit(MemDc, DIGIT3, i);
                 break;
-            case '4' :
+            case _T('4') :
                 DrawDigit(MemDc, DIGIT4, i);
                 break;
-            case '5' :
+            case _T('5') :
                 DrawDigit(MemDc, DIGIT5, i);
                 break;
-            case '6' :
+            case _T('6') :
                 DrawDigit(MemDc, DIGIT6, i);
                 break;
-            case '7' :
+            case _T('7') :
                 DrawDigit(MemDc, DIGIT7, i);
                 break;
-            case '8' :
+            case _T('8') :
                 DrawDigit(MemDc, DIGIT8, i);
                 break;
-            case '9' :
+            case _T('9') :
                 DrawDigit(MemDc, DIGIT9, i);
                 break;
-            case '-' :
+            case _T('-') :
                 DrawDigit(MemDc, DASH, i);
                 break;
-            case '.' :
+            case _T('.') :
                 // Display the decimal in the previous segment
                 i--;
                 DrawDigit(MemDc, DECIMALSIGN, i);
                 break;
-            case ' ' :
+            case _T(' ') :
                 // just skip it
                 break;
             default :