]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/utils/convertrc/rc2xml.h
Version number updates
[wxWidgets.git] / contrib / utils / convertrc / rc2xml.h
index 0b53937bff5c523b510ab84f545073c04245ffa2..dba5808e2bbc6782ad9411c6bd4ca1b46895165b 100644 (file)
@@ -5,12 +5,16 @@
 #if !defined(RC2XML_H)
 #define RC2XML_H
 
+#ifdef __GNUG__
+#pragma interface "rc2xml.h"
+#endif
+
 #include "wx/file.h"
 #include <wx/ffile.h>
 #include <wx/list.h>
 
 
-class rc2xml : public wxObject  
+class rc2xml : public wxObject
 {
 public:
     wxString m_workingpath;
@@ -22,8 +26,8 @@ public:
     ~rc2xml();
 
 protected:
-       wxString LookUpId(wxString id);
-       
+    wxString LookUpId(wxString id);
+
     void ParseResourceHeader();
     void WriteBitmap(wxString bitmapname);
     void ParseListCtrl(wxString label,wxString varname);
@@ -37,7 +41,7 @@ protected:
     wxList * m_iconlist;
     void ParseIconStatic();
     void ParseMenuItem();
-       
+
 //Functions
     bool SplitHelp(wxString msg, wxString &shorthelp, wxString &longhelp);
     bool LookUpString(wxString strid,wxString & st);
@@ -87,7 +91,7 @@ protected:
     wxList * m_resourcelist;
     wxFile m_rc;
     wxFFile m_xmlfile;
-    int m_filesize;
+    wxFileOffset m_filesize;
     bool m_done;
 
 };