summaryrefslogtreecommitdiff
path: root/include/connectivity/PColumn.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/connectivity/PColumn.hxx')
-rw-r--r--include/connectivity/PColumn.hxx40
1 files changed, 20 insertions, 20 deletions
diff --git a/include/connectivity/PColumn.hxx b/include/connectivity/PColumn.hxx
index 0bbe03fea928..69fdbb2188e9 100644
--- a/include/connectivity/PColumn.hxx
+++ b/include/connectivity/PColumn.hxx
@@ -44,12 +44,12 @@ namespace connectivity
class OOO_DLLPUBLIC_DBTOOLS OParseColumn :
public OParseColumn_BASE, public OParseColumn_PROP
{
- OUString m_aRealName;
- OUString m_sLabel;
- sal_Bool m_bFunction;
- sal_Bool m_bDbasePrecisionChanged;
- sal_Bool m_bAggregateFunction;
- sal_Bool m_bIsSearchable;
+ OUString m_aRealName;
+ OUString m_sLabel;
+ bool m_bFunction;
+ bool m_bDbasePrecisionChanged;
+ bool m_bAggregateFunction;
+ bool m_bIsSearchable;
protected:
virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const SAL_OVERRIDE;
@@ -57,7 +57,7 @@ namespace connectivity
virtual ~OParseColumn();
public:
- OParseColumn(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn,sal_Bool _bCase);
+ OParseColumn(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn, bool _bCase);
OParseColumn(const OUString& _Name,
const OUString& _TypeName,
const OUString& _DefaultValue,
@@ -66,9 +66,9 @@ namespace connectivity
sal_Int32 _Precision,
sal_Int32 _Scale,
sal_Int32 _Type,
- sal_Bool _IsAutoIncrement,
- sal_Bool _IsCurrency,
- sal_Bool _bCase,
+ bool _IsAutoIncrement,
+ bool _IsCurrency,
+ bool _bCase,
const OUString& _CatalogName,
const OUString& _SchemaName,
const OUString& _TableName);
@@ -78,16 +78,16 @@ namespace connectivity
void setRealName(const OUString& _rName) { m_aRealName = _rName; }
void setLabel(const OUString& i_sLabel) { m_sLabel = i_sLabel; }
void setTableName(const OUString& _rName) { m_TableName = _rName; }
- void setFunction(sal_Bool _bFunction) { m_bFunction = _bFunction; }
- void setAggregateFunction(sal_Bool _bFunction) { m_bAggregateFunction = _bFunction; }
- void setIsSearchable( sal_Bool _bIsSearchable ) { m_bIsSearchable = _bIsSearchable; }
- void setDbasePrecisionChanged(sal_Bool _bDbasePrecisionChanged) { m_bDbasePrecisionChanged = _bDbasePrecisionChanged; }
+ void setFunction(bool _bFunction) { m_bFunction = _bFunction; }
+ void setAggregateFunction(bool _bFunction) { m_bAggregateFunction = _bFunction; }
+ void setIsSearchable( bool _bIsSearchable ) { m_bIsSearchable = _bIsSearchable; }
+ void setDbasePrecisionChanged(bool _bDbasePrecisionChanged) { m_bDbasePrecisionChanged = _bDbasePrecisionChanged; }
const OUString& getRealName() const { return m_aRealName; }
const OUString& getLabel() const { return m_sLabel; }
const OUString& getTableName() const { return m_TableName; }
- sal_Bool getFunction() const { return m_bFunction; }
- sal_Bool getDbasePrecisionChanged() const { return m_bDbasePrecisionChanged; }
+ bool getFunction() const { return m_bFunction; }
+ bool getDbasePrecisionChanged() const { return m_bDbasePrecisionChanged; }
public:
/** creates a collection of OParseColumn, as described by a result set meta data instance.
@@ -134,14 +134,14 @@ namespace connectivity
OOrderColumn(
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn,
const OUString& i_rOriginatingTableName,
- sal_Bool _bCase,
- sal_Bool _bAscending
+ bool _bCase,
+ bool _bAscending
);
OOrderColumn(
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn,
- sal_Bool _bCase,
- sal_Bool _bAscending
+ bool _bCase,
+ bool _bAscending
);
virtual void construct() SAL_OVERRIDE;