diff options
| author | Markus Engel <markus.engel@tum.de> | 2014-03-27 00:11:46 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2014-03-27 00:11:46 +0000 |
| commit | 60e6c1d025ba5923e15a49763378732eaabe4f5a (patch) | |
| tree | 25bb25b77d58a505619d2a69a7d79025696c7de6 /src/ui/tools/connector-tool.h | |
| parent | Cleaned up pencil-tool. (diff) | |
| download | inkscape-60e6c1d025ba5923e15a49763378732eaabe4f5a.tar.gz inkscape-60e6c1d025ba5923e15a49763378732eaabe4f5a.zip | |
Changed some return types from gint to bool.
(bzr r13220)
Diffstat (limited to 'src/ui/tools/connector-tool.h')
| -rw-r--r-- | src/ui/tools/connector-tool.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/tools/connector-tool.h b/src/ui/tools/connector-tool.h index b85412a53..9a9ae64cf 100644 --- a/src/ui/tools/connector-tool.h +++ b/src/ui/tools/connector-tool.h @@ -124,10 +124,10 @@ public: private: void _selectionChanged(Inkscape::Selection *selection); - gint _handleButtonPress(GdkEventButton const &bevent); - gint _handleMotionNotify(GdkEventMotion const &mevent); - gint _handleButtonRelease(GdkEventButton const &revent); - gint _handleKeyPress(guint const keyval); + bool _handleButtonPress(GdkEventButton const &bevent); + bool _handleMotionNotify(GdkEventMotion const &mevent); + bool _handleButtonRelease(GdkEventButton const &revent); + bool _handleKeyPress(guint const keyval); void _setInitialPoint(Geom::Point const p); void _setSubsequentPoint(Geom::Point const p); |
