]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dir.h
remove unused wxAppTraits-related files
[wxWidgets.git] / include / wx / dir.h
index 14ed2ab963d70ae9bef736b0036f085f410e9da5..99b7b4acf19295409c7de0fc1a7b2ee9c30dbad7 100644 (file)
@@ -63,7 +63,7 @@ public:
     virtual wxDirTraverseResult OnDir(const wxString& dirname) = 0;
 
     // called for each directory which we couldn't open during our traversal
-    // of the directory tyree
+    // of the directory tree
     //
     // this method can also return either wxDIR_STOP, wxDIR_IGNORE or
     // wxDIR_CONTINUE but the latter is treated specially: it means to retry
@@ -95,7 +95,7 @@ public:
     // opens the directory for enumeration, use IsOpened() to test success
     wxDir(const wxString& dir);
 
-    // dtor cleans up the associated ressources
+    // dtor cleans up the associated resources
     ~wxDir();
 
     // open the directory for enumerating
@@ -146,8 +146,10 @@ public:
                               const wxString& filespec,
                               int flags = wxDIR_DEFAULT);
 
+#if wxUSE_LONGLONG
     // returns the size of all directories recursively found in given path
     static wxULongLong GetTotalSize(const wxString &dir, wxArrayString *filesSkipped = NULL);
+#endif // wxUSE_LONGLONG
 
 private:
     friend class wxDirData;