diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-05-14 14:26:13 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-05-14 14:31:27 +0900 |
commit | acf9b40977fd0d7cf604ff9f17dd7cc5aef8b2e9 (patch) | |
tree | 47046bf633c3bc134f3832b956105cab740324f8 /include | |
parent | e452abddfe1bbb88ca050e9aab0834b393f54693 (diff) |
sal_Bool to bool
Change-Id: If2f09533666a6090d4860e79b33a05d12e058940
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/field.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/field.hxx b/include/vcl/field.hxx index 97ff8f1136ad..67bf9a2ab255 100644 --- a/include/vcl/field.hxx +++ b/include/vcl/field.hxx @@ -107,7 +107,7 @@ private: OUString maFieldString; OUString maLiteralMask; sal_uInt16 mnFormatFlags; - sal_Bool mbSameMask; + bool mbSameMask; sal_Bool mbInPattKeyInput; protected: @@ -115,7 +115,7 @@ protected: SAL_DLLPRIVATE void ImplSetMask(const OString& rEditMask, const OUString& rLiteralMask); - SAL_DLLPRIVATE sal_Bool ImplIsSameMask() const { return mbSameMask; } + SAL_DLLPRIVATE bool ImplIsSameMask() const { return mbSameMask; } SAL_DLLPRIVATE sal_Bool& ImplGetInPattKeyInput() { return mbInPattKeyInput; } public: |