summaryrefslogtreecommitdiff
path: root/fpicker/source/office/OfficeControlAccess.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 12:40:46 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:10:08 +0200
commit7651fbe98dac41496120c82d1341362dbe45a82a (patch)
tree773f77ab53c364379a5a400f73878d3dda6a756f /fpicker/source/office/OfficeControlAccess.hxx
parent32efd885e5a36f3146f6f7d7b6cd6f2f5531e920 (diff)
fpicker: sal_Bool->bool
Change-Id: I73fd5d0ad28185f53df66408e1e981a3d73482b4
Diffstat (limited to 'fpicker/source/office/OfficeControlAccess.hxx')
-rw-r--r--fpicker/source/office/OfficeControlAccess.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/fpicker/source/office/OfficeControlAccess.hxx b/fpicker/source/office/OfficeControlAccess.hxx
index c5b03d436266..e629463032f6 100644
--- a/fpicker/source/office/OfficeControlAccess.hxx
+++ b/fpicker/source/office/OfficeControlAccess.hxx
@@ -58,18 +58,18 @@ namespace svt
// XControlInformation implementation
::com::sun::star::uno::Sequence< OUString > getSupportedControls( );
::com::sun::star::uno::Sequence< OUString > getSupportedControlProperties( const OUString& _rControlName );
- sal_Bool isControlSupported( const OUString& _rControlName );
- sal_Bool isControlPropertySupported( const OUString& _rControlName, const OUString& _rControlProperty );
+ bool isControlSupported( const OUString& _rControlName );
+ bool isControlPropertySupported( const OUString& _rControlName, const OUString& _rControlProperty );
// XFilePickerControlAccess
void setValue( sal_Int16 _nId, sal_Int16 _nCtrlAction, const ::com::sun::star::uno::Any& _rValue );
::com::sun::star::uno::Any getValue( sal_Int16 _nId, sal_Int16 _nCtrlAction ) const;
void setLabel( sal_Int16 _nId, const OUString& _rValue );
OUString getLabel( sal_Int16 _nId ) const;
- void enableControl( sal_Int16 _nId, sal_Bool _bEnable );
+ void enableControl( sal_Int16 _nId, bool _bEnable );
- static void setHelpURL( Window* _pControl, const OUString& _rURL, sal_Bool _bFileView );
- static OUString getHelpURL( Window* _pControl, sal_Bool _bFileView );
+ static void setHelpURL( Window* _pControl, const OUString& _rURL, bool _bFileView );
+ static OUString getHelpURL( Window* _pControl, bool _bFileView );
private:
/** implements the various methods for setting properties on controls
@@ -89,7 +89,7 @@ namespace svt
void implSetControlProperty(
sal_Int16 _nControlId,
Control* _pControl, sal_Int16 _nProperty, const ::com::sun::star::uno::Any& _rValue,
- sal_Bool _bIgnoreIllegalArgument = sal_True );
+ bool _bIgnoreIllegalArgument = true );
Control* implGetControl( const OUString& _rControlName, sal_Int16* _pId = NULL, sal_Int32* _pPropertyMask = NULL ) const SAL_THROW( (::com::sun::star::lang::IllegalArgumentException) );