From aa83c86cd30e77bad7fdb2b047ce256a24c883b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sat, 30 Jun 2018 16:23:22 +0200 Subject: Fix bug reports link in about dialog Update bug reports url to bugs.trinitydesktop.org This resolves bug 2935 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- tdeio/misc/tdesendbugmail/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tdeio/misc') diff --git a/tdeio/misc/tdesendbugmail/main.cpp b/tdeio/misc/tdesendbugmail/main.cpp index 32465039d..bf3099094 100644 --- a/tdeio/misc/tdesendbugmail/main.cpp +++ b/tdeio/misc/tdesendbugmail/main.cpp @@ -20,7 +20,7 @@ static TDECmdLineOptions options[] = { { "subject ", I18N_NOOP("Subject line"), 0 }, - { "recipient ", I18N_NOOP("Recipient"), "submit@bugs.kde.org" }, + { "recipient ", I18N_NOOP("Recipient"), "submit@bugs.trinitydesktop.org" }, TDECmdLineLastOption }; @@ -60,7 +60,7 @@ int main(int argc, char **argv) { TDELocale::setMainCatalogue("tdelibs"); TDEAboutData d("tdesendbugmail", I18N_NOOP("KSendBugMail"), "1.0", - I18N_NOOP("Sends a short bug report to submit@bugs.kde.org"), + I18N_NOOP("Sends a short bug report to submit@bugs.trinitydesktop.org"), TDEAboutData::License_GPL, "(c) 2000 Stephan Kulow"); d.addAuthor("Stephan Kulow", I18N_NOOP("Author"), "coolo@kde.org"); @@ -72,7 +72,7 @@ int main(int argc, char **argv) { TQCString recipient = args->getOption("recipient"); if (recipient.isEmpty()) - recipient = "submit@bugs.kde.org"; + recipient = "submit@bugs.trinitydesktop.org"; else { if (recipient.at(0) == '\'') { recipient = recipient.mid(1).left(recipient.length() - 2); @@ -117,7 +117,7 @@ int main(int argc, char **argv) { TQString server = emailConfig.getSetting(KEMailSettings::OutServer); if (server.isEmpty()) - server=TQString::fromLatin1("bugs.kde.org"); + server=TQString::fromLatin1("bugs.trinitydesktop.org"); SMTP *sm = new SMTP; BugMailer bm(sm); -- cgit v1.2.1