]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filename.h
compilation fix for !WXWIN_COMPATIBILITY_2_2
[wxWidgets.git] / include / wx / filename.h
index 9553b4c0e88854242631db301d6259e8b16fc623..9768a8739530c7d3fb219baa2f58ecfaac583acb 100644 (file)
@@ -296,9 +296,6 @@ public:
     // is the char a path separator for this format?
     static bool IsPathSeparator(wxChar ch, wxPathFormat format = wxPATH_NATIVE);
 
-    // FIXME: what exactly does this do?
-    bool IsWild( wxPathFormat format = wxPATH_NATIVE );
-
     // Dir accessors
     void AppendDir( const wxString &dir );
     void PrependDir( const wxString &dir );
@@ -344,6 +341,9 @@ public:
     // Return the long form of the path (returns identity on non-Windows platforms)
     wxString GetLongPath() const;
 
+    // Is this a file or directory (not necessarily an existing one)
+    bool IsDir() const { return m_name.empty() && m_ext.empty(); }
+
     // various helpers
 
         // get the canonical path format for this platform