]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/prop.cpp
fix for wxFrame's last focus bug (finally?)
[wxWidgets.git] / src / generic / prop.cpp
index 12d9626903983d16d84c9a564e89e2d43ce0a669..717558038272163fc7c9e0cf8d5bb504fad777a7 100644 (file)
@@ -179,7 +179,7 @@ wxPropertyValue::wxPropertyValue(wxStringList *the_list)
   wxNode *node = the_list->First();
   while (node)
   {
-    char *s = (char *)node->Data();
+    wxChar *s = (wxChar *)node->Data();
     Append(new wxPropertyValue(s));
     node = node->Next();
   }
@@ -613,7 +613,7 @@ void wxPropertyValue::operator=(const wxString& val1)
   }
   else if (m_type == wxPropertyValueStringPtr)
   {
-    wxFAIL_MSG( "Shouldn't try to assign a wxString reference to a char* pointer.");
+    wxFAIL_MSG( wxT("Shouldn't try to assign a wxString reference to a char* pointer.") );
     if (val)
       *m_value.stringPtr = copystring(val);
     else