Minor compilation fix for Borland
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -7142,8 +7142,12 @@ void wxGrid::AutoSizeColOrRow( int colOrRow, bool setAsMin, bool column )
|
|||||||
// now also compare with the column label extent
|
// now also compare with the column label extent
|
||||||
wxCoord w, h;
|
wxCoord w, h;
|
||||||
dc.SetFont( GetLabelFont() );
|
dc.SetFont( GetLabelFont() );
|
||||||
dc.GetTextExtent( column ? GetColLabelValue(col)
|
|
||||||
: GetRowLabelValue(row), &w, &h );
|
if ( column )
|
||||||
|
dc.GetTextExtent( GetColLabelValue(col), &w, &h );
|
||||||
|
else
|
||||||
|
dc.GetTextExtent( GetRowLabelValue(col), &w, &h );
|
||||||
|
|
||||||
extent = column ? w : h;
|
extent = column ? w : h;
|
||||||
if ( extent > extentMax )
|
if ( extent > extentMax )
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user