diff options
| author | Adrian Boguszewski <adrbogus1@student.pg.gda.pl> | 2016-07-20 11:45:05 +0000 |
|---|---|---|
| committer | Adrian Boguszewski <adrbogus1@student.pg.gda.pl> | 2016-07-20 11:45:05 +0000 |
| commit | a227e8d45e7eaa6bf25d8ab65fbd404bc4597306 (patch) | |
| tree | bc6b6ed4676395fe66dca0e0b9af79f76fb7434c /src/ui/tools/calligraphic-tool.cpp | |
| parent | Merged trunk (diff) | |
| download | inkscape-a227e8d45e7eaa6bf25d8ab65fbd404bc4597306.tar.gz inkscape-a227e8d45e7eaa6bf25d8ab65fbd404bc4597306.zip | |
Changed signatures of boolean functions
(bzr r14954.1.24)
Diffstat (limited to 'src/ui/tools/calligraphic-tool.cpp')
| -rw-r--r-- | src/ui/tools/calligraphic-tool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tools/calligraphic-tool.cpp b/src/ui/tools/calligraphic-tool.cpp index 28195eb75..12dcedd21 100644 --- a/src/ui/tools/calligraphic-tool.cpp +++ b/src/ui/tools/calligraphic-tool.cpp @@ -930,10 +930,10 @@ void CalligraphicTool::set_to_accumulated(bool unionize, bool subtract) { if (unionize) { desktop->getSelection()->add(this->repr); - sp_selected_path_union_skip_undo(desktop->getSelection(), desktop); + sp_selected_path_union_skip_undo(desktop->getSelection()); } else if (subtract) { desktop->getSelection()->add(this->repr); - sp_selected_path_diff_skip_undo(desktop->getSelection(), desktop); + sp_selected_path_diff_skip_undo(desktop->getSelection()); } else { if (this->keep_selected) { desktop->getSelection()->set(this->repr); |
