summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/select-tool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/tools/select-tool.h')
-rw-r--r--src/ui/tools/select-tool.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui/tools/select-tool.h b/src/ui/tools/select-tool.h
index b26fc03bc..edc4069a2 100644
--- a/src/ui/tools/select-tool.h
+++ b/src/ui/tools/select-tool.h
@@ -35,8 +35,8 @@ public:
SelectTool();
virtual ~SelectTool();
- guint dragging : 1;
- guint moved : 1;
+ bool dragging;
+ bool moved;
bool button_press_shift;
bool button_press_ctrl;
bool button_press_alt;
@@ -64,6 +64,7 @@ public:
private:
bool sp_select_context_abort();
void sp_select_context_cycle_through_items(Inkscape::Selection *selection, GdkEventScroll *scroll_event, bool shift_pressed);
+ void sp_select_context_reset_opacities();
};
}