mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
read*entry--
svn path=/trunk/KDE/kdebase/konqueror/; revision=500451
This commit is contained in:
parent
950fb2f6bc
commit
bec7e479e4
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue