diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-25 16:55:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-27 13:45:07 +0200 |
commit | 21dcef5388e8e5941380225ccb808daa7b1c5620 (patch) | |
tree | 28aefe369dd12a6dffac2b6105bd26e04d6d59ec /include/xmlscript | |
parent | 65c3e11ea90964726c7d7671447d12e767167d12 (diff) |
xmlscript: sal_Bool->bool
Change-Id: I5d0041283637dddeac86c50917d77c7e3d005b20
Diffstat (limited to 'include/xmlscript')
-rw-r--r-- | include/xmlscript/xmllib_imexp.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/xmlscript/xmllib_imexp.hxx b/include/xmlscript/xmllib_imexp.hxx index d0762b7722cb..16a543da1df3 100644 --- a/include/xmlscript/xmllib_imexp.hxx +++ b/include/xmlscript/xmllib_imexp.hxx @@ -37,11 +37,11 @@ struct XMLSCRIPT_DLLPUBLIC LibDescriptor { OUString aName; OUString aStorageURL; - sal_Bool bLink; - sal_Bool bReadOnly; - sal_Bool bPasswordProtected; + bool bLink; + bool bReadOnly; + bool bPasswordProtected; ::com::sun::star::uno::Sequence< OUString > aElementNames; - sal_Bool bPreload; + bool bPreload; }; struct XMLSCRIPT_DLLPUBLIC LibDescriptorArray |