summaryrefslogtreecommitdiffstats
path: root/src/splivarot.h
diff options
context:
space:
mode:
authorAdrian Boguszewski <adrbogus1@student.pg.gda.pl>2016-07-20 11:45:05 +0000
committerAdrian Boguszewski <adrbogus1@student.pg.gda.pl>2016-07-20 11:45:05 +0000
commita227e8d45e7eaa6bf25d8ab65fbd404bc4597306 (patch)
treebc6b6ed4676395fe66dca0e0b9af79f76fb7434c /src/splivarot.h
parentMerged trunk (diff)
downloadinkscape-a227e8d45e7eaa6bf25d8ab65fbd404bc4597306.tar.gz
inkscape-a227e8d45e7eaa6bf25d8ab65fbd404bc4597306.zip
Changed signatures of boolean functions
(bzr r14954.1.24)
Diffstat (limited to 'src/splivarot.h')
-rw-r--r--src/splivarot.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/splivarot.h b/src/splivarot.h
index 421c9c4b8..9b07a5a71 100644
--- a/src/splivarot.h
+++ b/src/splivarot.h
@@ -17,6 +17,7 @@ class SPItem;
namespace Inkscape {
class Selection;
+ class ObjectSet;
}
// boolean operations
@@ -27,14 +28,17 @@ namespace Inkscape {
// command-line mode, i.e. without a desktop. If a desktop is not
// provided (desktop == NULL), error messages will be shown on stderr.
void sp_selected_path_union (Inkscape::Selection *selection, SPDesktop *desktop);
-void sp_selected_path_union_skip_undo (Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selected_path_union_skip_undo (Inkscape::ObjectSet *set);
void sp_selected_path_intersect (Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selected_path_intersect_skip_undo (Inkscape::ObjectSet *set);
void sp_selected_path_diff (Inkscape::Selection *selection, SPDesktop *desktop);
-void sp_selected_path_diff_skip_undo (Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selected_path_diff_skip_undo (Inkscape::ObjectSet *set);
void sp_selected_path_symdiff (Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selected_path_symdiff_skip_undo (Inkscape::ObjectSet *set);
void sp_selected_path_cut (Inkscape::Selection *selection, SPDesktop *desktop);
-void sp_selected_path_cut_skip_undo (Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selected_path_cut_skip_undo (Inkscape::ObjectSet *set);
void sp_selected_path_slice (Inkscape::Selection *selection, SPDesktop *desktop);
+void sp_selected_path_slice_skip_undo (Inkscape::ObjectSet *set);
// offset/inset of a curve
// takes the fill-rule in consideration