]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/grid.h
compilation fix for BCC (and probably others)
[wxWidgets.git] / include / wx / generic / grid.h
index 5601ed1c2ab6760ab786ef008e5a626206363538..132921af938e837a97f156ffe0af2b1026d1f4b2 100644 (file)
@@ -605,13 +605,6 @@ public:
         Merged
     };
 
-    enum wxAttrOverflowMode
-    {
-        Unset = -1,
-        Overflow,
-        SingleCell
-    };
-
     // ctors
     wxGridCellAttr(wxGridCellAttr *attrDefault = NULL)
     {
@@ -675,7 +668,7 @@ public:
     bool HasRenderer() const { return m_renderer != NULL; }
     bool HasEditor() const { return m_editor != NULL; }
     bool HasReadWriteMode() const { return m_isReadOnly != Unset; }
-    bool HasOverflowMode() const { return m_overflow != Unset; }
+    bool HasOverflowMode() const { return m_overflow != UnsetOverflow; }
 
     const wxColour& GetTextColour() const;
     const wxColour& GetBackgroundColour() const;
@@ -683,7 +676,7 @@ public:
     void GetAlignment(int *hAlign, int *vAlign) const;
     void GetSize(int *num_rows, int *num_cols) const;
     bool GetOverflow() const
-        { return m_overflow != wxGridCellAttr::SingleCell; }
+        { return m_overflow != SingleCell; }
     wxGridCellRenderer *GetRenderer(wxGrid* grid, int row, int col) const;
     wxGridCellEditor *GetEditor(wxGrid* grid, int row, int col) const;
 
@@ -701,6 +694,13 @@ private:
         ReadOnly
     };
 
+    enum wxAttrOverflowMode
+    {
+        UnsetOverflow = -1,
+        Overflow,
+        SingleCell
+    };
+
     // the common part of all ctors
     void Init(wxGridCellAttr *attrDefault = NULL);