summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrWebPresentation.cpp
diff options
context:
space:
mode:
authorChris <xchrisx@uber.space>2019-07-16 01:58:10 +0200
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-07-16 23:32:34 +0900
commit6d97f43c4e2c7165fd05789e628576e60234e93b (patch)
tree8c8405747cdd0b66bd346e5001cf4c3c66edc8c9 /kpresenter/KPrWebPresentation.cpp
parentfb0bf02ad2e936201eae8ada0d263667d15494e3 (diff)
downloadkoffice-6d97f43c4e2c7165fd05789e628576e60234e93b.tar.gz
koffice-6d97f43c4e2c7165fd05789e628576e60234e93b.zip
Fix old upstream URLs for visible parts.
Signed-off-by: Chris <xchrisx@uber.space> Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9b2c6a283082eb866d4e8e824ce1279b5b41bc52)
Diffstat (limited to 'kpresenter/KPrWebPresentation.cpp')
-rw-r--r--kpresenter/KPrWebPresentation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kpresenter/KPrWebPresentation.cpp b/kpresenter/KPrWebPresentation.cpp
index 90053b31c..ff9e3aea0 100644
--- a/kpresenter/KPrWebPresentation.cpp
+++ b/kpresenter/KPrWebPresentation.cpp
@@ -510,7 +510,7 @@ void KPrWebPresentation::createSlidesHTML( KProgress *progressBar )
htmlAuthor=escapeHtmlText( codec, author );
else
htmlAuthor=TQString("<a href=\"mailto:%1\">%2</a>").arg( escapeHtmlText( codec, email )).arg( escapeHtmlText( codec, author ));
- streamOut << EscapeEncodingOnly ( codec, i18n( "Created on %1 by <i>%2</i> with <a href=\"http://www.koffice.org/kpresenter\">KPresenter</a>" )
+ streamOut << EscapeEncodingOnly ( codec, i18n( "Created on %1 by <i>%2</i> with <a href=\"http://www.trinitydesktop.org\">KPresenter</a>" )
.arg( TDEGlobal::locale()->formatDate ( TQDate::currentDate() ) ).arg( htmlAuthor ) );
streamOut << " </center><hr noshade=\"noshade\"" << ( isXML() ?" /":"") << ">\n";
@@ -561,7 +561,7 @@ void KPrWebPresentation::createMainPage( KProgress *progressBar )
// footer: author name, e-mail
TQString htmlAuthor = email.isEmpty() ? escapeHtmlText( codec, author ) :
TQString("<a href=\"mailto:%1\">%2</a>").arg( escapeHtmlText( codec, email )).arg( escapeHtmlText( codec, author ));
- streamOut << EscapeEncodingOnly ( codec, i18n( "Created on %1 by <i>%2</i> with <a href=\"http://www.koffice.org/kpresenter\">KPresenter</a>" )
+ streamOut << EscapeEncodingOnly ( codec, i18n( "Created on %1 by <i>%2</i> with <a href=\"http://www.trinitydesktop.org\">KPresenter</a>" )
.arg( TDEGlobal::locale()->formatDate ( TQDate::currentDate() ) ).arg( htmlAuthor ) );
streamOut << "</body>\n</html>\n";