]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/HelpGen/src/cjparser.cpp
Fix conversion error in tooltips.
[wxWidgets.git] / utils / HelpGen / src / cjparser.cpp
index a623a286117664194f21a0746c10b78efe8888a7..fbec4d74dc4604558c54bda6faa29531a17ea011 100644 (file)
@@ -10,8 +10,7 @@
 /////////////////////////////////////////////////////////////////////////////
 
 #ifdef __GNUG__
-#pragma implementation "acell.h"
-#pragma interface
+#  pragma implementation "acell.h"
 #endif
 
 // For compilers that support precompilation, includes "wx/wx.h".
@@ -905,11 +904,11 @@ static void arrange_indirection_tokens_between( string& type,
 {
     // TBD:: FIXME:: return value of operators !
 
-    while ( identifier[0] == '*' ||
-            identifier[0] == '&'
+    while ( identifier[0u] == '*' ||
+            identifier[0u] == '&'
           )
     {
-        type += identifier[0];
+        type += identifier[0u];
         identifier.erase(0,1);
 
         if ( !identifier.length() ) return;