]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/scrolbar.h
fix typo in drawing slider ticks; added assert to check for it (slightly modified...
[wxWidgets.git] / include / wx / mac / scrolbar.h
index 9efad2dfd0ec0b649afb04e3dc720eb43c0238fd..61c7f5b13944e9e20f92cccbd17f65dd7c5feace 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_SCROLBAR_H_
 #define _WX_SCROLBAR_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "scrolbar.h"
 #endif
 
@@ -46,8 +46,8 @@ public:
            const wxString& name = wxScrollBarNameStr);
 
   int GetThumbPosition() const ;
-  inline int GetThumbSize() const { return m_pageSize; }
-  inline int GetPageSize() const { return m_viewSize; }
+  inline int GetThumbSize() const { return m_viewSize; }
+  inline int GetPageSize() const { return m_pageSize; }
   inline int GetRange() const { return m_objectSize; }
 
   bool IsVertical() const { return (m_windowStyle & wxVERTICAL) != 0; }