openbsd-ports/geo/qgis/patches/patch-src_app_attributetable_qgsattributetabledelegate_cpp
2010-01-11 20:13:31 +00:00

16 lines
716 B
Plaintext

$OpenBSD: patch-src_app_attributetable_qgsattributetabledelegate_cpp,v 1.2 2010/01/11 20:13:31 landry Exp $
Unroll some c++ too violent for g++3.3.
--- src/app/attributetable/qgsattributetabledelegate.cpp.orig Sun Dec 20 19:13:22 2009
+++ src/app/attributetable/qgsattributetabledelegate.cpp Mon Jan 11 16:39:31 2010
@@ -111,7 +111,9 @@ void QgsAttributeTableDelegate::paint( QPainter * pain
if ( option.state & QStyle::State_HasFocus )
{
QRect r = option.rect.adjusted( 1, 1, -1, -1 );
- QPen p( QBrush( QColor( 0, 255, 127 ) ), 2 );
+ QColor c = QColor( 0, 255, 127 );
+ QBrush b = QBrush( c );
+ QPen p( b, 2 );
painter->save();
painter->setPen( p );
painter->drawRect( r );