Skip to content

Commit

Permalink
mainwindow: Use utf8 string literal in about dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
ahodesuka committed Dec 3, 2017
1 parent e624b86 commit ca01a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ MainWindow::MainWindow(BaseObjectType *cobj, const Glib::RefPtr<Gtk::Builder> &b

m_AboutDialog->set_name(PACKAGE);
m_AboutDialog->set_version(ahoviewer_version);
m_AboutDialog->set_copyright("Copyright \302\251 2013-2017 ahoka");
m_AboutDialog->set_copyright(u8"Copyright \u00A9 2013-2017 ahoka");
m_AboutDialog->set_website(PACKAGE_URL);

m_AboutDialog->set_license(
Expand Down

0 comments on commit ca01a42

Please sign in to comment.