summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2011-10-29 23:53:45 +0000
committerJon A. Cruz <jon@joncruz.org>2011-10-29 23:53:45 +0000
commit863cfa417c873cf2c9fb9e006dfef98ba30341e8 (patch)
treed71298d371d89e3fa12e023c522aa478fd76afe5 /src/widgets
parentUpdating use of libpng jump buffer. Fixes bug #721029. (diff)
downloadinkscape-863cfa417c873cf2c9fb9e006dfef98ba30341e8.tar.gz
inkscape-863cfa417c873cf2c9fb9e006dfef98ba30341e8.zip
Fixing initializer order and missing initializers.
(bzr r10708)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/sp-color-wheel-selector.cpp4
-rw-r--r--src/widgets/sp-color-wheel-selector.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/sp-color-wheel-selector.cpp b/src/widgets/sp-color-wheel-selector.cpp
index 148f3e834..89008288a 100644
--- a/src/widgets/sp-color-wheel-selector.cpp
+++ b/src/widgets/sp-color-wheel-selector.cpp
@@ -82,9 +82,9 @@ ColorWheelSelector::ColorWheelSelector( SPColorSelector* csel )
_dragging( FALSE ),
_adj(0),
_wheel(0),
+ _slider(0),
_sbtn(0),
- _label(0),
- _slider(0)
+ _label(0)
{
}
diff --git a/src/widgets/sp-color-wheel-selector.h b/src/widgets/sp-color-wheel-selector.h
index d8bcb730b..5674850cb 100644
--- a/src/widgets/sp-color-wheel-selector.h
+++ b/src/widgets/sp-color-wheel-selector.h
@@ -38,11 +38,11 @@ protected:
gboolean _updating : 1;
gboolean _dragging : 1;
- GtkAdjustment* _adj; /* Channel adjustment */
+ GtkAdjustment* _adj; // Channel adjustment
GtkWidget* _wheel;
GtkWidget* _slider;
- GtkWidget* _sbtn; /* Spinbutton */
- GtkWidget* _label; /* Label */
+ GtkWidget* _sbtn; // Spinbutton
+ GtkWidget* _label; // Label
private:
// By default, disallow copy constructor and assignment operator