]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filename.h
corrected EVT_TEXT_URL() definition, its handler takes wxTextUrlEvent and not wxComma...
[wxWidgets.git] / include / wx / filename.h
index 954f4f349f216e7f168bf09006c42fb903f7c2fd..9711cd6fa820875c25359361b4a75f3f07becc12 100644 (file)
@@ -346,11 +346,12 @@ public:
     static bool IsPathSeparator(wxChar ch, wxPathFormat format = wxPATH_NATIVE);
 
     // Dir accessors
-    void AppendDir( const wxString &dir );
-    void PrependDir( const wxString &dir );
-    void InsertDir( int before, const wxString &dir );
-    void RemoveDir( int pos );
     size_t GetDirCount() const { return m_dirs.size(); }
+    void AppendDir(const wxString& dir);
+    void PrependDir(const wxString& dir);
+    void InsertDir(size_t before, const wxString& dir);
+    void RemoveDir(size_t pos);
+    void RemoveLastDir() { RemoveDir(GetDirCount() - 1); }
 
     // Other accessors
     void SetExt( const wxString &ext )          { m_ext = ext; }