summaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-12-16 03:02:51 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-12-16 03:02:51 +0100
commit170d0b123f2133c3a17ee4e53f5c3e1b9c905a7c (patch)
tree57ca9a51b753fc6c36dacd66774b91242c138fcd /src/protocolhandler.cpp
parentclean up (diff)
downloadrekonq-170d0b123f2133c3a17ee4e53f5c3e1b9c905a7c.tar.xz
notfound.html --> rekonqinfo.html
cleanups
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r--src/protocolhandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp
index a9b14b6f..c66af403 100644
--- a/src/protocolhandler.cpp
+++ b/src/protocolhandler.cpp
@@ -136,9 +136,9 @@ QString ProtocolHandler::dirHandling(const KUrl &url)
return errStr;
}
- // display "not found" page
- QString notfoundFilePath = KStandardDirs::locate("data", "rekonq/htmls/notfound.html");
- QFile file(notfoundFilePath);
+ // display "rekonq info" page
+ QString infoFilePath = KStandardDirs::locate("data", "rekonq/htmls/rekonqinfo.html");
+ QFile file(infoFilePath);
bool isOpened = file.open(QIODevice::ReadOnly);
if (!isOpened)