summaryrefslogtreecommitdiffstats
path: root/tdeio/misc/tdesendbugmail
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2018-06-30 16:23:22 +0200
committerSlávek Banko <[email protected]>2018-06-30 16:28:39 +0200
commitaa83c86cd30e77bad7fdb2b047ce256a24c883b5 (patch)
tree6a8cbf9e98ea9e136140365baa5cdfcee80160d2 /tdeio/misc/tdesendbugmail
parent6734f5e47f496ca1b89e2fd6c51e46ec447e3de1 (diff)
downloadtdelibs-aa83c86cd30e77bad7fdb2b047ce256a24c883b5.tar.gz
tdelibs-aa83c86cd30e77bad7fdb2b047ce256a24c883b5.zip
Fix bug reports link in about dialog
Update bug reports url to bugs.trinitydesktop.org This resolves bug 2935 Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'tdeio/misc/tdesendbugmail')
-rw-r--r--tdeio/misc/tdesendbugmail/main.cpp8
1 files changed, 4 insertions, 4 deletions
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 <argument>", I18N_NOOP("Subject line"), 0 },
- { "recipient <argument>", I18N_NOOP("Recipient"), "[email protected]" },
+ { "recipient <argument>", I18N_NOOP("Recipient"), "[email protected]" },
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 [email protected]"),
+ I18N_NOOP("Sends a short bug report to [email protected]"),
TDEAboutData::License_GPL, "(c) 2000 Stephan Kulow");
d.addAuthor("Stephan Kulow", I18N_NOOP("Author"), "[email protected]");
@@ -72,7 +72,7 @@ int main(int argc, char **argv) {
TQCString recipient = args->getOption("recipient");
if (recipient.isEmpty())
- recipient = "[email protected]";
+ recipient = "[email protected]";
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);