diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-05-22 23:43:46 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-05-22 23:43:46 +0200 |
commit | 370d5677ba15c4e41ba2513bbeed266fe69cbe41 (patch) | |
tree | d45d54f9644709f0f4324280c47999c7d5e7601e /src/mainwindow.cpp | |
parent | show url on file:// && ftp:// schemes (diff) | |
download | rekonq-370d5677ba15c4e41ba2513bbeed266fe69cbe41.tar.xz |
Cleaning some kDebug calls
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 2287370c..f5be73ee 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -634,7 +634,6 @@ void MainWindow::preferences() void MainWindow::updateActions() { bool rekonqPage = currentTab()->page()->isOnRekonqPage(); - kDebug() << "UPDATE ACTIONS: rekonq page = " << rekonqPage; QAction *historyBackAction = actionByName(KStandardAction::name(KStandardAction::Back)); if( rekonqPage ) @@ -1314,7 +1313,7 @@ void MainWindow::setEncoding(QAction *qa) { QString currentCodec = qa->text().toLatin1(); currentCodec = currentCodec.remove('&'); - kDebug() << currentCodec; + kDebug() << "Setting codec: " << currentCodec; currentTab()->page()->settings()->setDefaultTextEncoding(currentCodec); } @@ -1331,7 +1330,6 @@ void MainWindow::populateEncodingMenu() codecs.sort(); QString currentCodec = currentTab()->page()->settings()->defaultTextEncoding(); - kDebug() << "Current Codec: " << currentCodec; m_encodingMenu->clear(); KMenu *isoMenu = new KMenu( QL1S("ISO"), m_encodingMenu); |