diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:42:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:42:48 +0200 |
commit | 35e26c8a4bd7886420714775bf17d58ecc71a48f (patch) | |
tree | be18c569cafc098234b4231831b36e937dd5b45a /toolkit | |
parent | da81ff5c0eb3119c486ad7b8930e2036877795a5 (diff) |
Some more sal_Bool -> bool
Change-Id: Ibb07e8c5b9ef44dac5ce23c590783c1462c532d7
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/controls/unocontrolbase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/controls/unocontrolbase.cxx b/toolkit/source/controls/unocontrolbase.cxx index 0993d75a7d28..6ad663687ccb 100644 --- a/toolkit/source/controls/unocontrolbase.cxx +++ b/toolkit/source/controls/unocontrolbase.cxx @@ -138,7 +138,7 @@ template <typename T> T UnoControlBase::ImplGetPropertyValueClass( sal_uInt16 nP bool UnoControlBase::ImplGetPropertyValue_BOOL( sal_uInt16 nProp ) { - return ImplGetPropertyValuePOD<sal_Bool>(nProp); + return ImplGetPropertyValuePOD<bool>(nProp); } sal_Int16 UnoControlBase::ImplGetPropertyValue_INT16( sal_uInt16 nProp ) |