Skip to content

Commit

Permalink
Fix for a compile error due to previous commit
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@6376 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jan 2, 2007
1 parent 0165846 commit a2b6e6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/qgsoptions.cpp
Expand Up @@ -232,9 +232,9 @@ void QgsOptions::saveOptions()

//set the default color for the measure tool
myColor = pbnMeasureColour->color();
myRed = settings.setValue("/qgis/default_measure_color_red",myColor.red());
myGreen = settings.setValue("/qgis/default_measure_color_green",myColor.green());
myBlue = settings.setValue("/qgis/default_measure_color_blue",myColor.blue());
settings.setValue("/qgis/default_measure_color_red",myColor.red());
settings.setValue("/qgis/default_measure_color_green",myColor.green());
settings.setValue("/qgis/default_measure_color_blue",myColor.blue());

settings.writeEntry("/qgis/wheel_action", cmbWheelAction->currentIndex());
settings.writeEntry("/qgis/zoom_factor", spinZoomFactor->value());
Expand Down

0 comments on commit a2b6e6d

Please sign in to comment.