]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/filedlgg.h
wxOS2 build fixes after wxColourBase introduction.
[wxWidgets.git] / include / wx / generic / filedlgg.h
index b942af6d6e99bffc001495b305568b7d94fa7b23..bc6ee53637dfafa2c66ceab154944bbeaaf4241b 100644 (file)
 #ifndef _WX_FILEDLGG_H_
 #define _WX_FILEDLGG_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "filedlgg.h"
-#endif
-
 #include "wx/listctrl.h"
 #include "wx/datetime.h"
+#include "wx/filefn.h"
 
 //-----------------------------------------------------------------------------
 // classes
@@ -187,7 +184,7 @@ public:
     void SetNewName( const wxString &filePath, const wxString &fileName );
 
     // Get the size of the file in bytes
-    long GetSize() const { return m_size; }
+    wxFileOffset GetSize() const { return m_size; }
     // Get the type of file, either file extension or <DIR>, <LINK>, <DRIVE>
     wxString GetFileType() const;
     // get the last modification time
@@ -235,12 +232,12 @@ public:
 protected:
     wxString m_fileName;
     wxString   m_filePath;
-    long     m_size;
+    wxFileOffset m_size;
     wxDateTime m_dateTime;
     wxString m_permissions;
     int      m_type;
-    int        m_image;
-    
+    int      m_image;
+
 private:
     void Init();
 };