]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filename.h
wxStaticBitmapBase::DoGetBestSize
[wxWidgets.git] / include / wx / filename.h
index b5b9c846017eff611834752729077a8adce99cf2..cbd601e66328158215de9f913aa8dff9aea6d6cc 100644 (file)
@@ -177,7 +177,11 @@ public:
     // file tests
 
         // is the filename valid at all?
-    bool IsOk() const { return m_dirs.size() != 0 || !m_name.IsEmpty(); }
+    bool IsOk() const
+    { 
+        // we're fine if we have the path or the name or if we're a root dir
+        return m_dirs.size() != 0 || !m_name.IsEmpty() || !m_relative;
+    }
 
         // does the file with this name exists?
     bool FileExists() const;