read*entry--

svn path=/trunk/KDE/kdebase/konqueror/; revision=500451
This commit is contained in:
Laurent Montel 2006-01-20 10:23:53 +00:00
parent 950fb2f6bc
commit bec7e479e4
2 changed files with 2 additions and 2 deletions

View file

@ -128,7 +128,7 @@ void FilterOptions::load()
bool webShortcutsEnabled = config.readEntry("EnableWebShortcuts", QVariant(true)).toBool();
m_dlg->cbEnableShortcuts->setChecked( webShortcutsEnabled );
setDelimiter (config.readNumEntry ("KeywordDelimiter", ':'));
setDelimiter (config.readEntry ("KeywordDelimiter", int(':')));
// Update the GUI to reflect the config options read above...
setWebShortcutState();

View file

@ -521,7 +521,7 @@ void KURISearchFilterEngine::loadConfig()
KConfig config( name() + "rc", false, false );
config.setGroup( "General" );
m_cKeywordDelimiter = config.readNumEntry("KeywordDelimiter", ':');
m_cKeywordDelimiter = config.readEntry("KeywordDelimiter", int(':'));
m_bWebShortcutsEnabled = config.readEntry("EnableWebShortcuts", QVariant(true)).toBool();
m_defaultSearchEngine = config.readEntry("DefaultSearchEngine");
m_bVerbose = config.readEntry("Verbose", QVariant(false)).toBool();