diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-11-02 08:00:40 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-11-02 08:00:40 +0000 |
| commit | abcd0cd508385848239660e4f6873b85982aad58 (patch) | |
| tree | 5389a868c995ecbff6cb438644a805d4a7fa0212 /src/ui/widget | |
| parent | fix bug [ 1824359 ] Gradient isn't snapping with ctrl pressed (diff) | |
| download | inkscape-abcd0cd508385848239660e4f6873b85982aad58.tar.gz inkscape-abcd0cd508385848239660e4f6873b85982aad58.zip | |
warning cleanup
(bzr r4012)
Diffstat (limited to 'src/ui/widget')
| -rw-r--r-- | src/ui/widget/rotateable.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/ui/widget/rotateable.h b/src/ui/widget/rotateable.h index 65f3c598c..79a6daa5b 100644 --- a/src/ui/widget/rotateable.h +++ b/src/ui/widget/rotateable.h @@ -23,29 +23,29 @@ namespace Widget { class Rotateable: public Gtk::EventBox { public: - Rotateable(); + Rotateable(); - ~Rotateable(); + ~Rotateable(); - bool on_click(GdkEventButton *event); - bool on_motion(GdkEventMotion *event); - bool on_release(GdkEventButton *event); + bool on_click(GdkEventButton *event); + bool on_motion(GdkEventMotion *event); + bool on_release(GdkEventButton *event); - double axis; - double current_axis; - double maxdecl; + double axis; + double current_axis; + double maxdecl; private: - double drag_started_x; - double drag_started_y; - guint modifier; - bool dragging; - bool working; + double drag_started_x; + double drag_started_y; + guint modifier; + bool dragging; + bool working; guint get_single_modifier(guint old, guint state); - virtual void do_motion (double by, guint state) {} - virtual void do_release (double by, guint state) {} + virtual void do_motion (double /*by*/, guint /*state*/) {} + virtual void do_release (double /*by*/, guint /*state*/) {} }; } // namespace Widget @@ -54,7 +54,7 @@ private: #endif // INKSCAPE_UI_ROTATEABLE_H -/* +/* Local Variables: mode:c++ c-file-style:"stroustrup" |
