diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-01-02 10:56:56 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-01-02 10:56:56 +0000 |
| commit | c9e6cec9f909db85df80688c7a5b2a0c97e56c3f (patch) | |
| tree | dfe5beb9f147998c235386b3cf09c2d598d33067 /src/ui/toolbar/measure-toolbar.cpp | |
| parent | protect includes in c file (diff) | |
| download | inkscape-c9e6cec9f909db85df80688c7a5b2a0c97e56c3f.tar.gz inkscape-c9e6cec9f909db85df80688c7a5b2a0c97e56c3f.zip | |
run clang tidy modernize pass
Diffstat (limited to 'src/ui/toolbar/measure-toolbar.cpp')
| -rw-r--r-- | src/ui/toolbar/measure-toolbar.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/toolbar/measure-toolbar.cpp b/src/ui/toolbar/measure-toolbar.cpp index eca4cf911..fa0d8827e 100644 --- a/src/ui/toolbar/measure-toolbar.cpp +++ b/src/ui/toolbar/measure-toolbar.cpp @@ -236,7 +236,7 @@ sp_toggle_show_in_between( GtkToggleAction* act, gpointer data ) } } static void -sp_reverse_knots(void){ +sp_reverse_knots(){ MeasureTool *mt = get_measure_tool(); if (mt) { mt->reverseKnots(); @@ -244,7 +244,7 @@ sp_reverse_knots(void){ } static void -sp_to_mark_dimension(void){ +sp_to_mark_dimension(){ MeasureTool *mt = get_measure_tool(); if (mt) { mt->toMarkDimension(); @@ -252,7 +252,7 @@ sp_to_mark_dimension(void){ } static void -sp_to_guides(void){ +sp_to_guides(){ MeasureTool *mt = get_measure_tool(); if (mt) { mt->toGuides(); @@ -260,7 +260,7 @@ sp_to_guides(void){ } static void -sp_to_phantom(void){ +sp_to_phantom(){ MeasureTool *mt = get_measure_tool(); if (mt) { mt->toPhantom(); @@ -268,7 +268,7 @@ sp_to_phantom(void){ } static void -sp_to_item(void){ +sp_to_item(){ MeasureTool *mt = get_measure_tool(); if (mt) { mt->toItem(); |
