- int w2, h2;
- int r = m_currentCellCoords.GetRow();
- int c = m_currentCellCoords.GetCol();
- int x = GetColLeft(c);
- int y = GetRowTop(r);
-
- // how big is the editor
- wxGridCellAttr* attr = GetCellAttr(r, c);
- wxGridCellEditor* editor = attr->GetEditor(this, r, c);
- editor->GetControl()->GetSize(&w2, &h2);
- w2 += x;
- h2 += y;
- if ( w2 > w )
- w = w2;
- if ( h2 > h )
- h = h2;
- editor->DecRef();
- attr->DecRef();
+ int w2, h2;
+ int r = m_currentCellCoords.GetRow();
+ int c = m_currentCellCoords.GetCol();
+ int x = GetColLeft(c);
+ int y = GetRowTop(r);
+
+ // how big is the editor
+ wxGridCellAttr* attr = GetCellAttr(r, c);
+ wxGridCellEditor* editor = attr->GetEditor(this, r, c);
+ editor->GetControl()->GetSize(&w2, &h2);
+ w2 += x;
+ h2 += y;
+ if ( w2 > w )
+ w = w2;
+ if ( h2 > h )
+ h = h2;
+ editor->DecRef();
+ attr->DecRef();