summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2018-12-20 22:22:53 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2018-12-20 22:22:53 +0000
commit1d45ed90ce8b990b7f5c59bb704e6f720cd2f1bd (patch)
treee1d70a69ce6667a4bf9c5975d2cc15d5f327f0e3 /src
parentMerge branch 'master' of gitlab.com:lucasvieites/inkscape (diff)
parentTurn off clang-format for about box formatting (diff)
downloadinkscape-1d45ed90ce8b990b7f5c59bb704e6f720cd2f1bd.tar.gz
inkscape-1d45ed90ce8b990b7f5c59bb704e6f720cd2f1bd.zip
Merge branch 'patch-1' of gitlab.com:techtonik/inkscape
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/aboutbox.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/dialog/aboutbox.cpp b/src/ui/dialog/aboutbox.cpp
index a5fe1dab2..d79a14861 100644
--- a/src/ui/dialog/aboutbox.cpp
+++ b/src/ui/dialog/aboutbox.cpp
@@ -80,15 +80,17 @@ AboutBox::AboutBox()
// Set Application metadata, which will be automatically
// inserted into text widgets by the Gtk::AboutDialog parent class
+ // clang-format off
set_program_name ( "Inkscape");
set_version ( Inkscape::version_string);
set_logo_icon_name( INKSCAPE_ICON("inkscape"));
set_website ( "https://www.inkscape.org");
set_website_label (_("Inkscape website"));
set_license_type (Gtk::LICENSE_GPL_3_0);
- set_copyright (_("© 2017 Inkscape Developers"));
+ set_copyright (_("© 2019 Inkscape Developers"));
set_comments (_("Open Source Scalable Vector Graphics Editor\n"
"Draw Freely."));
+ // clang-format on
}
/**