summaryrefslogtreecommitdiffstats
path: root/src/ui/widget
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/widget')
-rw-r--r--src/ui/widget/rotateable.h32
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"