From: Manuel Nickschas Date: Mon, 13 Jul 2009 17:39:41 +0000 (+0200) Subject: Set bugtracker address in KAboutData X-Git-Tag: 0.4.3~7 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=12cf712ff75a8ccab3a44e4e519508f209906b39 Set bugtracker address in KAboutData This should tell DrKonqui where to report bugs for Quassel. Thanks to Dario Andres for reporting this. --- diff --git a/src/common/main.cpp b/src/common/main.cpp index 14329f61..643959f4 100644 --- a/src/common/main.cpp +++ b/src/common/main.cpp @@ -69,6 +69,7 @@ int main(int argc, char **argv) { ki18n("A modern, distributed IRC client")); aboutData.addLicense(KAboutData::License_GPL_V2); aboutData.addLicense(KAboutData::License_GPL_V3); + aboutData.setBugAddress("http://bugs.quassel-irc.org"); aboutData.setOrganizationDomain(Quassel::buildInfo().organizationDomain.toUtf8()); KCmdLineArgs::init(argc, argv, &aboutData);