diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-08 10:51:29 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-08 10:51:29 +0200 |
commit | 5a9d9ad3b251ab1ff3c62af465f37bdf5fd0bf6e (patch) | |
tree | 30d82bfdc820ec196cbd4ec9cb259ce74e6261fa /src/settings.cpp | |
parent | Added warning to debug navigation requests.. (diff) | |
download | rekonq-5a9d9ad3b251ab1ff3c62af465f37bdf5fd0bf6e.tar.xz |
Removed unuseful commented code
Diffstat (limited to 'src/settings.cpp')
-rw-r--r-- | src/settings.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/settings.cpp b/src/settings.cpp index 5922d786..e5a8b025 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -160,12 +160,7 @@ void SettingsDialog::readConfig() connect(d->generalUi.downloadDirUrlRequester, SIGNAL(textChanged(QString)), this, SLOT(saveSettings())); // ======= Fonts -// QFont stdFont = ReKonfig::standardFont(); -// d->fontsUi.standardFont->setCurrentFont(stdFont); -// -// QFont fxFont = ReKonfig::fixedFont(); d->fontsUi.kcfg_fixedFont->setOnlyFixed(true); -// d->fontsUi.fixedFont->setCurrentFont(fxFont); // ======= Proxy bool proxyEnabled = ReKonfig::isProxyEnabled(); @@ -180,10 +175,6 @@ void SettingsDialog::saveSettings() // General ReKonfig::setDownloadDir(d->generalUi.downloadDirUrlRequester->url().prettyUrl()); - // Fonts -// ReKonfig::setStandardFont( d->fontsUi.standardFont->currentFont() ); -// ReKonfig::setFixedFont( d->fontsUi.fixedFont->currentFont() ); - // Save ReKonfig::self()->writeConfig(); } |