summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/update/check/updatecheckconfig.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/update/check/updatecheckconfig.cxx b/extensions/source/update/check/updatecheckconfig.cxx
index a1c5c97fd290..dfc62d81cc9b 100644
--- a/extensions/source/update/check/updatecheckconfig.cxx
+++ b/extensions/source/update/check/updatecheckconfig.cxx
@@ -106,7 +106,7 @@ NamedValueByNameAccess::getValue(const sal_Char * pName)
bool
UpdateCheckROModel::isAutoCheckEnabled() const
{
- return sal_True == m_aNameAccess.getValue(AUTOCHECK_ENABLED).get< sal_Bool >();
+ return m_aNameAccess.getValue(AUTOCHECK_ENABLED).get<bool>();
}
@@ -114,7 +114,7 @@ UpdateCheckROModel::isAutoCheckEnabled() const
bool
UpdateCheckROModel::isDownloadPaused() const
{
- return sal_True == m_aNameAccess.getValue(DOWNLOAD_PAUSED).get< sal_Bool >();
+ return m_aNameAccess.getValue(DOWNLOAD_PAUSED).get<bool>();
}