summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/aboutbox.cpp
diff options
context:
space:
mode:
authorAlexander Valavanis <valavanisalex@gmail.com>2017-08-16 18:04:47 +0000
committerAlexander Valavanis <valavanisalex@gmail.com>2017-08-16 18:04:47 +0000
commite89f17cdaf2757eb522579f68dc7b8a3197b0d6b (patch)
tree54e2b3725ab459666ac5f44bee45ae6d8a866438 /src/ui/dialog/aboutbox.cpp
parentAboutBox: Tweak class structure (diff)
downloadinkscape-e89f17cdaf2757eb522579f68dc7b8a3197b0d6b.tar.gz
inkscape-e89f17cdaf2757eb522579f68dc7b8a3197b0d6b.zip
AboutBox: Add placeholder Copyright string. Need to confirm contents
Diffstat (limited to 'src/ui/dialog/aboutbox.cpp')
-rw-r--r--src/ui/dialog/aboutbox.cpp17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/ui/dialog/aboutbox.cpp b/src/ui/dialog/aboutbox.cpp
index c537013ab..569056ee1 100644
--- a/src/ui/dialog/aboutbox.cpp
+++ b/src/ui/dialog/aboutbox.cpp
@@ -80,14 +80,15 @@ AboutBox::AboutBox()
// Set Application metadata, which will be automatically
// inserted into text widgets by the Gtk::AboutDialog parent class
- 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_comments(_("Open Source Scalable Vector Graphics Editor\n"
- "Draw Freely."));
+ 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_comments (_("Open Source Scalable Vector Graphics Editor\n"
+ "Draw Freely."));
}
/**