]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/docview.cpp
Couple of unicode fixes (the #if should be wxUSE_UNICODE, not wxUNICODE,
[wxWidgets.git] / src / common / docview.cpp
index a6687e39a6eb591034f0fc768267e769e82c4712..465f22a2be88f4779803e442f21962722fbb538f 100644 (file)
@@ -1297,7 +1297,7 @@ wxDocTemplate *wxDocManager::SelectDocumentType(wxDocTemplate **templates,
     }
 
     wxDocTemplate *theTemplate = (wxDocTemplate *)wxGetSingleChoiceData(_("Select a document template"), _("Templates"), n,
-            strings, data);
+            strings, (char **)data);
     delete[] strings;
     delete[] data;
     return theTemplate;
@@ -1320,7 +1320,7 @@ wxDocTemplate *wxDocManager::SelectViewType(wxDocTemplate **templates,
         }
     }
     wxDocTemplate *theTemplate = (wxDocTemplate *)wxGetSingleChoiceData(_("Select a document view"), _("Views"), n,
-            strings, data);
+            strings, (char **)data);
     delete[] strings;
     delete[] data;
     return theTemplate;