summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
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);