Some more sal_Bool -> bool
Change-Id: I2dcc7bb0c8d5a6e205d627330735237f85fd9f9f
This commit is contained in:
parent
5258b85ff4
commit
c21bc9e5aa
1 changed files with 4 additions and 4 deletions
|
@ -145,7 +145,7 @@ UpdateCheckROModel::getUpdateEntry(UpdateInfo& rInfo) const
|
|||
rInfo.Version = getStringValue(UPDATE_VERSION);
|
||||
rInfo.Description = getStringValue(UPDATE_DESCRIPTION);
|
||||
|
||||
sal_Bool isDirectDownload = false;
|
||||
bool isDirectDownload = false;
|
||||
m_aNameAccess.getValue(IS_DIRECT_DOWNLOAD) >>= isDirectDownload;
|
||||
|
||||
rInfo.Sources.push_back( DownloadSource( isDirectDownload, getStringValue(DOWNLOAD_URL) ) );
|
||||
|
@ -253,7 +253,7 @@ UpdateCheckConfig::get(
|
|||
bool
|
||||
UpdateCheckConfig::isAutoCheckEnabled() const
|
||||
{
|
||||
sal_Bool nValue = false;
|
||||
bool nValue = false;
|
||||
const_cast < UpdateCheckConfig *> (this)->getByName( AUTOCHECK_ENABLED ) >>= nValue;
|
||||
return nValue;
|
||||
}
|
||||
|
@ -261,7 +261,7 @@ UpdateCheckConfig::isAutoCheckEnabled() const
|
|||
bool
|
||||
UpdateCheckConfig::isAutoDownloadEnabled() const
|
||||
{
|
||||
sal_Bool nValue = false;
|
||||
bool nValue = false;
|
||||
const_cast < UpdateCheckConfig *> (this)->getByName( AUTODOWNLOAD_ENABLED ) >>= nValue;
|
||||
return nValue;
|
||||
}
|
||||
|
@ -520,7 +520,7 @@ UpdateCheckConfig::commitChanges()
|
|||
aChangesSet[i].Accessor >>= aString;
|
||||
if( aString.endsWith(AUTOCHECK_ENABLED "']") )
|
||||
{
|
||||
sal_Bool bEnabled = false;
|
||||
bool bEnabled = false;
|
||||
aChangesSet[i].Element >>= bEnabled;
|
||||
m_rListener->autoCheckStatusChanged(bEnabled);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue