diff options
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 82f555ef..0fdd538e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -315,8 +315,6 @@ void MainWindow::slotUpdateConfiguration() defaultSettings->setFontFamily(QWebSettings::FixedFont, fixedFont.family()); defaultSettings->setFontSize(QWebSettings::DefaultFixedFontSize, fnSize); - // =========== Privacy ============== - // ================ WebKit ============================ defaultSettings->setAttribute(QWebSettings::AutoLoadImages, ReKonfig::autoLoadImages()); defaultSettings->setAttribute(QWebSettings::JavascriptEnabled, ReKonfig::javascriptEnabled()); @@ -796,7 +794,7 @@ bool MainWindow::queryClose() if (m_view->count() > 1) { int ret = KMessageBox::warningYesNo(this, - i18n("Are you sure you want to close the window?" " There are %1 tab open" , m_view->count() ), + i18n("Are you sure you want to close the window?\nThere are %1 tab open" , m_view->count() ), i18n("Closing") ); if (ret == KMessageBox::No) |