Skip to content

Commit

Permalink
Fix homepage link: this time the real fix
Browse files Browse the repository at this point in the history
Hit a git pitfall with the previous commit. Sorry for that.

The hyperlink in >Help >About Picmi does not work, because the hyperlink
is put in the place of the additional free form text for that dialog.

To keep the parameter list of the constructor invocation short, do not
fix the constructor call, but remove the homepage from there and set the
homepage link afterwards in a separate call to setHomepage().

REVIEW: 125992
  • Loading branch information
Martin Walch committed Nov 12, 2015
1 parent b570009 commit 902f9fd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ int main(int argc, char *argv[])
.toLatin1(),
i18n("Picmi - a nonogram puzzle game"),
KAboutLicense::GPL_V2,
i18n("(c) 2012 - 2015 The Picmi Authors"),
QString(),
"https://projects.kde.org/projects/kde/kdegames/picmi");
i18n("(c) 2012 - 2015 The Picmi Authors"));
about.setHomepage("https://projects.kde.org/projects/kde/kdegames/picmi");
about.addAuthor(i18n("Jakob Gruber"), i18n("Picmi Author"), "jakob.gruber@gmail.com");


Expand Down

0 comments on commit 902f9fd

Please sign in to comment.