diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-16 22:51:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:19 +0100 |
commit | 05f742d28b3786f44781af5b069c05c16b84decd (patch) | |
tree | dacb340f99ad4e47d20557eee04e6f69f5d15721 /writerperfect | |
parent | faced6b5f72b096800a232749cce6b38a76d5bac (diff) |
comphelper: sal_Bool -> bool
Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/source/impress/KeynoteImportFilter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/writerperfect/source/impress/KeynoteImportFilter.cxx b/writerperfect/source/impress/KeynoteImportFilter.cxx index ea944e05d70b..60c1fcfc4731 100644 --- a/writerperfect/source/impress/KeynoteImportFilter.cxx +++ b/writerperfect/source/impress/KeynoteImportFilter.cxx @@ -302,7 +302,7 @@ throw( com::sun::star::uno::RuntimeException ) lComponentDataNV.realloc( nCDSize + 1 ); beans::NamedValue aValue; aValue.Name = "IsPackage"; - aValue.Value = comphelper::makeBoolAny(sal_True); + aValue.Value = comphelper::makeBoolAny(true); lComponentDataNV[nCDSize] = aValue; Descriptor[nComponentDataLocation].Value <<= lComponentDataNV; } @@ -312,7 +312,7 @@ throw( com::sun::star::uno::RuntimeException ) lComponentDataPV.realloc( nCDSize + 1 ); beans::PropertyValue aProp; aProp.Name = "IsPackage"; - aProp.Value = comphelper::makeBoolAny(sal_True); + aProp.Value = comphelper::makeBoolAny(true); aProp.Handle = -1; aProp.State = beans::PropertyState_DIRECT_VALUE; lComponentDataPV[nCDSize] = aProp; |