]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/ifacecheck/src/xmlparser.cpp
fixed some false positives; fixed method declaration-position detection also for...
[wxWidgets.git] / utils / ifacecheck / src / xmlparser.cpp
index 849a36a8a9b92a372188c3ce1653a27153ea371c..c9dae4fc528e5041ae5c3e81c860377a5ff07710 100644 (file)
@@ -81,6 +81,9 @@ void wxType::SetTypeFromString(const wxString& t)
 
     m_strType.Replace(" ,", ",");
 
+    // ADHOC-FIX
+    m_strType.Replace("_wxArraywxArrayStringBase", "const wxString&");
+
     m_strType = m_strType.Strip(wxString::both);
 
 
@@ -107,6 +110,7 @@ void wxType::SetTypeFromString(const wxString& t)
     m_strTypeClean.Replace("wxDateTime::", "");
     m_strTypeClean.Replace("wxStockGDI::", "");     // same story for some other classes
     m_strTypeClean.Replace("wxHelpEvent::", "");
+    m_strTypeClean.Replace("wxWindowID", "int");
 }
 
 bool wxType::IsOk() const