summaryrefslogtreecommitdiff
path: root/cui/source/options/securityoptions.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-19 12:30:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-19 12:47:07 +0100
commit973b47a336b239cc92f1789013d28e5bd55f859f (patch)
tree6481f2803208409896aecf6745239cf07953baab /cui/source/options/securityoptions.hxx
parent9ad3fc29dd98167c35fcb599da0b4e764ddf04dd (diff)
unotools: sal_Bool -> bool
Change-Id: I8051c0756e0474a5b4f748e0aa15a9922e82ea97
Diffstat (limited to 'cui/source/options/securityoptions.hxx')
-rw-r--r--cui/source/options/securityoptions.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/cui/source/options/securityoptions.hxx b/cui/source/options/securityoptions.hxx
index 7ff25c4ae5b1..ba2f3798ca92 100644
--- a/cui/source/options/securityoptions.hxx
+++ b/cui/source/options/securityoptions.hxx
@@ -51,14 +51,14 @@ namespace svx
SecurityOptionsDialog( Window* pParent, SvtSecurityOptions* pOptions );
~SecurityOptionsDialog();
- bool IsSaveOrSendDocsChecked() const { return m_pSaveOrSendDocsCB->IsChecked() != sal_False; }
- bool IsSignDocsChecked() const { return m_pSignDocsCB->IsChecked() != sal_False; }
- bool IsPrintDocsChecked() const { return m_pPrintDocsCB->IsChecked() != sal_False; }
- bool IsCreatePdfChecked() const { return m_pCreatePdfCB->IsChecked() != sal_False; }
- bool IsRemovePersInfoChecked() const { return m_pRemovePersInfoCB->IsChecked() != sal_False; }
- bool IsRecommPasswdChecked() const { return m_pRecommPasswdCB->IsChecked() != sal_False; }
- bool IsCtrlHyperlinkChecked() const { return m_pCtrlHyperlinkCB->IsChecked() != sal_False; }
- bool IsBlockUntrustedRefererLinksChecked() const { return m_pBlockUntrustedRefererLinksCB->IsChecked() != sal_False; }
+ bool IsSaveOrSendDocsChecked() const { return m_pSaveOrSendDocsCB->IsChecked(); }
+ bool IsSignDocsChecked() const { return m_pSignDocsCB->IsChecked(); }
+ bool IsPrintDocsChecked() const { return m_pPrintDocsCB->IsChecked(); }
+ bool IsCreatePdfChecked() const { return m_pCreatePdfCB->IsChecked(); }
+ bool IsRemovePersInfoChecked() const { return m_pRemovePersInfoCB->IsChecked(); }
+ bool IsRecommPasswdChecked() const { return m_pRecommPasswdCB->IsChecked(); }
+ bool IsCtrlHyperlinkChecked() const { return m_pCtrlHyperlinkCB->IsChecked(); }
+ bool IsBlockUntrustedRefererLinksChecked() const { return m_pBlockUntrustedRefererLinksCB->IsChecked(); }
};
//........................................................................