Fix a number of accidental tqStatus string conversions

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1249829 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent b924269184
commit 3d1395d8de

@ -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();

@ -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.

Loading…
Cancel
Save