]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/utils/wxrc/wxrc.cpp
Moved the check for page scrolling with the wheel into wxMouseEvent so
[wxWidgets.git] / contrib / utils / wxrc / wxrc.cpp
index 34a25c872e96d387e2b64b8eba9a8cf5189e5424..38b5ac59fc62ddcbe7a2c35f6d4a3dcebc1f995a 100644 (file)
@@ -262,7 +262,7 @@ void XmlResApp::FindFilesInXML(wxXmlNode *node, wxArrayString& flist, const wxSt
             // ...and known to contain filename
         {
             wxString fullname;
-            if (wxIsAbsolutePath(n->GetContent())) fullname = n->GetContent();
+            if (wxIsAbsolutePath(n->GetContent()) || inputPath == "") fullname = n->GetContent();
             else fullname = inputPath + "/" + n->GetContent();
 
             if (flagVerbose)