summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/document-properties.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-05-22 09:07:34 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-05-22 09:07:34 +0000
commit3ddb0853b36f3349f187737b774530a0cadd00f3 (patch)
tree5ed366e5985e91a6f8dcf67ebf4749571916fa96 /src/ui/dialog/document-properties.cpp
parentPrint: Match document size against known paper sizes (diff)
parentcolorspace::Component: Fix undefined references without lcms (diff)
downloadinkscape-3ddb0853b36f3349f187737b774530a0cadd00f3.tar.gz
inkscape-3ddb0853b36f3349f187737b774530a0cadd00f3.zip
Merge branch 'fix-undefined-references-without-lcms' of gitlab.com:libiquity/inkscape
Diffstat (limited to 'src/ui/dialog/document-properties.cpp')
-rw-r--r--src/ui/dialog/document-properties.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/ui/dialog/document-properties.cpp b/src/ui/dialog/document-properties.cpp
index 96835c65b..7b1025e2b 100644
--- a/src/ui/dialog/document-properties.cpp
+++ b/src/ui/dialog/document-properties.cpp
@@ -410,6 +410,30 @@ void DocumentProperties::build_snap()
attach_all(_page_snap->table(), array, G_N_ELEMENTS(array));
}
+void DocumentProperties::create_guides_around_page()
+{
+ SPDesktop *dt = getDesktop();
+ Verb *verb = Verb::get( SP_VERB_EDIT_GUIDES_AROUND_PAGE );
+ if (verb) {
+ SPAction *action = verb->get_action(Inkscape::ActionContext(dt));
+ if (action) {
+ sp_action_perform(action, NULL);
+ }
+ }
+}
+
+void DocumentProperties::delete_all_guides()
+{
+ SPDesktop *dt = getDesktop();
+ Verb *verb = Verb::get( SP_VERB_EDIT_DELETE_ALL_GUIDES );
+ if (verb) {
+ SPAction *action = verb->get_action(Inkscape::ActionContext(dt));
+ if (action) {
+ sp_action_perform(action, NULL);
+ }
+ }
+}
+
#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
/// Populates the available color profiles combo box
void DocumentProperties::populate_available_profiles(){
@@ -472,30 +496,6 @@ static void sanitizeName( Glib::ustring& str )
}
}
-void DocumentProperties::create_guides_around_page()
-{
- SPDesktop *dt = getDesktop();
- Verb *verb = Verb::get( SP_VERB_EDIT_GUIDES_AROUND_PAGE );
- if (verb) {
- SPAction *action = verb->get_action(Inkscape::ActionContext(dt));
- if (action) {
- sp_action_perform(action, NULL);
- }
- }
-}
-
-void DocumentProperties::delete_all_guides()
-{
- SPDesktop *dt = getDesktop();
- Verb *verb = Verb::get( SP_VERB_EDIT_DELETE_ALL_GUIDES );
- if (verb) {
- SPAction *action = verb->get_action(Inkscape::ActionContext(dt));
- if (action) {
- sp_action_perform(action, NULL);
- }
- }
-}
-
/// Links the selected color profile in the combo box to the document
void DocumentProperties::linkSelectedProfile()
{