[Marble-commits] KDE/kdeedu/marble/src/plugins/render/osmannotate

Casper van Donderen casper.vandonderen at gmail.com
Thu Jul 30 18:31:11 CEST 2009


SVN commit 1004629 by cvandonderen:

Fix compilation error on Windows. QColor(Qt::lightGray) is not allowed.


 M  +1 -1      GeoWidgetBubble.cpp  


--- trunk/KDE/kdeedu/marble/src/plugins/render/osmannotate/GeoWidgetBubble.cpp #1004628:1004629
@@ -68,7 +68,7 @@
 
 void GeoWidgetBubble::setGeoWidget( QWidget* w )
 {
-    QPalette p( QColor(Qt::lightGray ), QColor( Qt::lightGray) );
+    QPalette p(Qt::lightGray, Qt::lightGray);
 
     m_widget= w;
     m_widget->setVisible(false);


More information about the Marble-commits mailing list