summaryrefslogtreecommitdiffstats
path: root/konq-plugins/webarchiver
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-16 12:24:40 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-16 12:24:40 -0600
commitc9da739cda5b0a21189dc42c21b0a479eca2ab1f (patch)
treeb60ce8b0acd54181bab7cd7534a3099a4d75ebb3 /konq-plugins/webarchiver
parent9227b804701b2b0843d20a617f8a8b8d0d8f078f (diff)
downloadtdeaddons-c9da739cda5b0a21189dc42c21b0a479eca2ab1f.tar.gz
tdeaddons-c9da739cda5b0a21189dc42c21b0a479eca2ab1f.zip
Fix unintended renaming
Diffstat (limited to 'konq-plugins/webarchiver')
-rw-r--r--konq-plugins/webarchiver/archivedialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konq-plugins/webarchiver/archivedialog.cpp b/konq-plugins/webarchiver/archivedialog.cpp
index 01520df..3af1d50 100644
--- a/konq-plugins/webarchiver/archivedialog.cpp
+++ b/konq-plugins/webarchiver/archivedialog.cpp
@@ -237,7 +237,7 @@ void ArchiveDialog::saveArchiveRecursive(const DOM::Node &pNode, const KURL& bas
/* Don't save tdehtml internal tags '-konq..'
* Approximating it with <DIV>
*/
- text += "<DIV> <!-- -KONTQ_BLOCK -->";
+ text += "<DIV> <!-- -KONQ_BLOCK -->";
} else if (nodeName == "BASE") {
/* Skip BASE, everything is relative to index.html
* Saving SCRIPT but they can cause trouble!
@@ -370,7 +370,7 @@ void ArchiveDialog::saveArchiveRecursive(const DOM::Node &pNode, const KURL& bas
text ="";
}
if (nodeName.at(0)=='-') {
- text += "</DIV> <!-- -KONTQ_BLOCK -->";
+ text += "</DIV> <!-- -KONQ_BLOCK -->";
} else {
text += "</" + pNode.nodeName().string() + ">";
if (nodeName == "PRE") {