]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/propform.cpp
*** empty log message ***
[wxWidgets.git] / src / generic / propform.cpp
index 2a115e5c57800918ec82988d53d05052fc86b48d..9a9e513763964016b4d532c1069a693e73105ba6 100644 (file)
@@ -30,7 +30,7 @@
 #include <string.h>
 
 #if wxUSE_IOSTREAMH
-#if defined(__WXMSW__) && !defined(__GNUWIN32__)
+#if defined(__WXMSW__) && !defined(__GNUWIN32__) && !defined(__WXWINE__)
 #include <strstrea.h>
 #else
 #include <strstream.h>
@@ -162,7 +162,7 @@ bool wxPropertyFormView::AssociateNames(void)
   while (node)
   {
     wxWindow *win = (wxWindow *)node->Data();
-    if (win->GetName() != "")
+    if (win->GetName() != _T(""))
     {
       wxProperty *prop = m_propertySheet->GetProperty(win->GetName());
       if (prop)
@@ -219,7 +219,7 @@ void wxPropertyFormView::OnCommand(wxWindow& win, wxCommandEvent& event)
   if (!m_propertySheet)
     return;
     
-  if (win.GetName() == "")
+  if (win.GetName() == _T(""))
     return;
 
   if (wxStrcmp(win.GetName(), _T("ok")) == 0)