]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/test.cpp
Fix Non-ce MSW unicode builds
[wxWidgets.git] / tests / test.cpp
index 7c63b439a315097718509dd43ce7983d28537e90..e6861bee35cf7f314e4f7c0fab4bf992eb7e5c41 100644 (file)
@@ -155,7 +155,9 @@ void TestApp::List(Test *test, const string& parent /*=""*/) const
         // take the last component of the name and append to the parent
         name = test->getName();
         string::size_type i = name.find_last_of(".:");
-        name = parent + "." + (i != string::npos ? name.substr(i + 1) : name);
+        if (i != string::npos)
+            name = name.substr(i + 1);
+        name = parent + "." + name;
 
         // drop the 1st component from the display and indent
         if (parent != "") {