diff --git a/kspread/dialogs/kspread_dlg_preference.cc b/kspread/dialogs/kspread_dlg_preference.cc index 3d470ecff..b167be320 100644 --- a/kspread/dialogs/kspread_dlg_preference.cc +++ b/kspread/dialogs/kspread_dlg_preference.cc @@ -232,7 +232,7 @@ configure::configure( View* _view, TQVBox *box , char *name ) rowHeader=config->readBoolEntry("Row Header",true); tabbar=config->readBoolEntry("Tabbar",true); formulaBar=config->readBoolEntry("Formula bar",true); - statusBar=config->readBoolEntry("tqStatus bar",true); + statusBar=config->readBoolEntry("Status bar",true); oldRecent=config->readNumEntry( "NbRecentFile" ,10); oldAutoSaveValue=config->readNumEntry("AutoSave",KoDocument::defaultAutoSave()/60); m_oldBackupFile=config->readBoolEntry("BackupFile",m_oldBackupFile); @@ -377,7 +377,7 @@ void configure::apply() } active=showStatusBar->isChecked(); - config->writeEntry( "tqStatus bar",active); + config->writeEntry( "Status bar",active); m_pView->showStatusBar( active ); int val=nbRecentFile->value(); diff --git a/kspread/kspread_view.cc b/kspread/kspread_view.cc index 7f6be54b3..459b1f114 100644 --- a/kspread/kspread_view.cc +++ b/kspread/kspread_view.cc @@ -2120,7 +2120,7 @@ void View::initConfig() doc()->setShowMessageError(config->readBoolEntry( "Msg error" ,false) ); doc()->setShowFormulaBar(config->readBoolEntry("Formula bar",true)); - doc()->setShowStatusBar(config->readBoolEntry("tqStatus bar",true)); + doc()->setShowStatusBar(config->readBoolEntry("Status bar",true)); changeNbOfRecentFiles(config->readNumEntry("NbRecentFile",10)); //autosave value is stored as a minute.