diff options
| author | Laurent Montel <[email protected]> | 2006-11-22 08:22:45 +0000 |
|---|---|---|
| committer | Laurent Montel <[email protected]> | 2006-11-22 08:22:45 +0000 |
| commit | 20b58b6c03f6fa56d0cc1da90c13658664c153f1 (patch) | |
| tree | 1ac95537c3d0c6f35e5ca9dbbf7fe9c90e14a3b7 /src/urlnavigator.cpp | |
| parent | 6987f297e6e275a1f46aa0f33919e86684c9ed8b (diff) | |
Some port
Remove not necessary file
svn path=/trunk/playground/utils/dolphin/; revision=606884
Diffstat (limited to 'src/urlnavigator.cpp')
| -rw-r--r-- | src/urlnavigator.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index e1afa3ffc..522198ff0 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -134,7 +134,7 @@ URLNavigator::~URLNavigator() void URLNavigator::setURL(const KUrl& url) { QString urlStr(url.pathOrUrl()); - //kdDebug() << "setURL(" << url << ")" << endl; + //kDebug() << "setURL(" << url << ")" << endl; if (urlStr.at(0) == '~') { // replace '~' by the home directory urlStr.remove(0, 1); @@ -150,7 +150,7 @@ void URLNavigator::setURL(const KUrl& url) const KUrl& nextURL = m_history[m_historyIndex - 1].url(); if (transformedURL == nextURL) { goForward(); -// kdDebug() << "goin' forward in history" << endl; +// kDebug() << "goin' forward in history" << endl; return; } } @@ -158,7 +158,7 @@ void URLNavigator::setURL(const KUrl& url) const KUrl& currURL = m_history[m_historyIndex].url(); if (currURL == transformedURL) { // don't insert duplicate history elements -// kdDebug() << "currURL == transformedURL" << endl; +// kDebug() << "currURL == transformedURL" << endl; return; } @@ -179,15 +179,15 @@ void URLNavigator::setURL(const KUrl& url) --m_historyIndex; } -/* kdDebug() << "history starting ====================" << endl; +/* kDebug() << "history starting ====================" << endl; int i = 0; for (QValueListIterator<URLNavigator::HistoryElem> it = m_history.begin(); it != m_history.end(); ++it, ++i) { - kdDebug() << i << ": " << (*it).url() << endl; + kDebug() << i << ": " << (*it).url() << endl; } - kdDebug() << "history done ========================" << endl;*/ + kDebug() << "history done ========================" << endl;*/ } const KUrl& URLNavigator::url() const @@ -414,8 +414,8 @@ void URLNavigator::slotBookmarkActivated(int index) void URLNavigator::slotRedirection(const KUrl& oldUrl, const KUrl& newUrl) { -// kdDebug() << "received redirection to " << newUrl << endl; -kdDebug() << "received redirection from " << oldUrl << " to " << newUrl << endl; +// kDebug() << "received redirection to " << newUrl << endl; +kDebug() << "received redirection from " << oldUrl << " to " << newUrl << endl; /* UrlStack::iterator it = m_urls.find(oldUrl); if (it != m_urls.end()) { |
