]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/utils/wxrcedit/nodesdb.cpp
Typos fixed and further clarification of the Python situation on Panther
[wxWidgets.git] / contrib / utils / wxrcedit / nodesdb.cpp
index f36e6ed4c5895530e7aad78a871f391835ae45ce..1fe48b08afc2f5387002224b456f28c884882e39 100644 (file)
@@ -49,7 +49,7 @@ void NodeInfo::Read(const wxString& filename, wxPathList& list)
 
     for (size_t i = 0; i < tf.GetLineCount(); i++)
     {
-        if (tf[i].IsEmpty() || tf[i][0] == _T('#')) continue;
+        if (tf[i].IsEmpty() || tf[i][0u] == _T('#')) continue;
         wxStringTokenizer tkn(tf[i], _T(' '));
         wxString s = tkn.GetNextToken();
         if (s == _T("node"))
@@ -159,7 +159,7 @@ void NodesDb::LoadDir(const wxString& path)
     wxString filename;
     bool cont;
 
-    cont = dir.GetFirst(&filename, "*.df");
+    cont = dir.GetFirst(&filename, _T("*.df"));
     while (cont)
     {
         LoadFile(filename);