diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2013-01-11 07:30:09 +0000 |
|---|---|---|
| committer | Jon A. Cruz <jon@joncruz.org> | 2013-01-11 07:30:09 +0000 |
| commit | cfe9c94712a2ff6849b123672e51b603f20e76ae (patch) | |
| tree | d3377768830691887a801cc7b45c3e8adb0c2c55 /src/ui/widget/spin-scale.cpp | |
| parent | gimpcolorwheel: Clean up drawing functions (diff) | |
| download | inkscape-cfe9c94712a2ff6849b123672e51b603f20e76ae.tar.gz inkscape-cfe9c94712a2ff6849b123672e51b603f20e76ae.zip | |
Warning and dead code cleanup.
(bzr r12014)
Diffstat (limited to 'src/ui/widget/spin-scale.cpp')
| -rw-r--r-- | src/ui/widget/spin-scale.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ui/widget/spin-scale.cpp b/src/ui/widget/spin-scale.cpp index 00c575568..8aab57a34 100644 --- a/src/ui/widget/spin-scale.cpp +++ b/src/ui/widget/spin-scale.cpp @@ -19,10 +19,9 @@ namespace UI { namespace Widget { SpinScale::SpinScale(const char* label, double value, double lower, double upper, double step_inc, - double climb_rate, int digits, const SPAttributeEnum a, const char* tip_text) + double /*climb_rate*/, int digits, const SPAttributeEnum a, const char* tip_text) : AttrWidget(a, value) { - #if WITH_GTKMM_3_0 _adjustment = Gtk::Adjustment::create(value, lower, upper, step_inc); _spinscale = gimp_spin_scale_new (_adjustment->gobj(), label, digits); |
