]> git.saurik.com Git - wxWidgets.git/commitdiff
Merge the cell size attribute the same way that other attributes are
authorRobin Dunn <robin@alldunn.com>
Wed, 1 Jun 2005 00:16:41 +0000 (00:16 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 1 Jun 2005 00:16:41 +0000 (00:16 +0000)
merged, e.g., if it is already set to a non-default value in the
current wxGridCellAttr object then don't merge from the other.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/grid.h
src/generic/grid.cpp

index e9b5dbb0c2b2703babfa60fc0363152d6e4c7c9a..7c4de9a29ff0e212e08083719b90139c86a081ad 100644 (file)
@@ -696,6 +696,7 @@ public:
     bool HasEditor() const { return m_editor != NULL; }
     bool HasReadWriteMode() const { return m_isReadOnly != Unset; }
     bool HasOverflowMode() const { return m_overflow != UnsetOverflow; }
+    bool HasSize() const { return m_sizeRows != 1 || m_sizeCols != 1; }
 
     const wxColour& GetTextColour() const;
     const wxColour& GetBackgroundColour() const;
index 55049525f78ed0584fedcf9c2227e4fdb0699066..395e94ac5dc1aa21aaafaa7f43fc31b34f891ec1 100644 (file)
@@ -2142,8 +2142,8 @@ void wxGridCellAttr::MergeWith(wxGridCellAttr *mergefrom)
         mergefrom->GetAlignment( &hAlign, &vAlign);
         SetAlignment(hAlign, vAlign);
     }
-
-    mergefrom->GetSize( &m_sizeRows, &m_sizeCols );
+    if ( !HasSize() && mergefrom->HasSize() )
+        mergefrom->GetSize( &m_sizeRows, &m_sizeCols );
 
     // Directly access member functions as GetRender/Editor don't just return
     // m_renderer/m_editor
@@ -2914,6 +2914,7 @@ wxGridCellAttr *wxGridTableBase::GetAttr(int row, int col, wxGridCellAttr::wxAtt
         return (wxGridCellAttr *)NULL;
 }
 
+
 void wxGridTableBase::SetAttr(wxGridCellAttr* attr, int row, int col)
 {
     if ( m_attrProvider )