[QGIS Commit] r11264 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Tue Aug 4 10:25:04 EDT 2009


Author: homann
Date: 2009-08-04 10:25:03 -0400 (Tue, 04 Aug 2009)
New Revision: 11264

Modified:
   trunk/qgis/src/app/qgssinglesymboldialog.cpp
Log:
Removed warning for missing signal

Modified: trunk/qgis/src/app/qgssinglesymboldialog.cpp
===================================================================
--- trunk/qgis/src/app/qgssinglesymboldialog.cpp	2009-08-04 12:22:55 UTC (rev 11263)
+++ trunk/qgis/src/app/qgssinglesymboldialog.cpp	2009-08-04 14:25:03 UTC (rev 11264)
@@ -74,7 +74,7 @@
   connect( lstSymbols, SIGNAL( currentItemChanged( QListWidgetItem *, QListWidgetItem * ) ),
            this, SLOT( symbolChanged( QListWidgetItem *, QListWidgetItem * ) ) );
   connect( mPointSizeSpinBox, SIGNAL( valueChanged( double ) ), this, SLOT( resendSettingsChanged() ) );
-  connect( mPointSizeUnitsCheckBox, SIGNAL( toggled() ), this, SLOT( resendSettingsChanged() ) );
+  connect( mPointSizeUnitsCheckBox, SIGNAL( toggled( bool ) ), this, SLOT( resendSettingsChanged() ) );
   connect( mRotationClassificationComboBox, SIGNAL( currentIndexChanged( const QString & ) ),
            this, SLOT( resendSettingsChanged() ) );
   connect( mScaleClassificationComboBox, SIGNAL( currentIndexChanged( const QString & ) ),
@@ -644,4 +644,4 @@
   {
     e->ignore();
   }
-}
\ No newline at end of file
+}



More information about the QGIS-commit mailing list