summaryrefslogtreecommitdiff
path: root/connectivity/source/parse
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/parse')
-rw-r--r--connectivity/source/parse/PColumn.cxx52
-rw-r--r--connectivity/source/parse/internalnode.cxx8
2 files changed, 30 insertions, 30 deletions
diff --git a/connectivity/source/parse/PColumn.cxx b/connectivity/source/parse/PColumn.cxx
index 39d7ebfedeea..bb53c96ad9a3 100644
--- a/connectivity/source/parse/PColumn.cxx
+++ b/connectivity/source/parse/PColumn.cxx
@@ -61,35 +61,35 @@ OParseColumn::OParseColumn(const Reference<XPropertySet>& _xColumn, bool _bCase)
}
-OParseColumn::OParseColumn( const OUString& _Name,
- const OUString& _TypeName,
- const OUString& _DefaultValue,
- const OUString& _Description,
- sal_Int32 _IsNullable,
- sal_Int32 _Precision,
- sal_Int32 _Scale,
- sal_Int32 _Type,
- bool _IsAutoIncrement,
- bool _IsCurrency,
+OParseColumn::OParseColumn( const OUString& Name,
+ const OUString& TypeName,
+ const OUString& DefaultValue,
+ const OUString& Description,
+ sal_Int32 IsNullable,
+ sal_Int32 Precision,
+ sal_Int32 Scale,
+ sal_Int32 Type,
+ bool IsAutoIncrement,
+ bool IsCurrency,
bool _bCase,
- const OUString& _CatalogName,
- const OUString& _SchemaName,
- const OUString& _TableName
- ) : connectivity::sdbcx::OColumn(_Name,
- _TypeName,
- _DefaultValue,
- _Description,
- _IsNullable,
- _Precision,
- _Scale,
- _Type,
- _IsAutoIncrement,
+ const OUString& CatalogName,
+ const OUString& SchemaName,
+ const OUString& TableName
+ ) : connectivity::sdbcx::OColumn(Name,
+ TypeName,
+ DefaultValue,
+ Description,
+ IsNullable,
+ Precision,
+ Scale,
+ Type,
+ IsAutoIncrement,
false,
- _IsCurrency,
+ IsCurrency,
_bCase,
- _CatalogName,
- _SchemaName,
- _TableName)
+ CatalogName,
+ SchemaName,
+ TableName)
, m_bFunction(false)
, m_bDbasePrecisionChanged(false)
, m_bAggregateFunction(false)
diff --git a/connectivity/source/parse/internalnode.cxx b/connectivity/source/parse/internalnode.cxx
index 860d5cabce6d..ef8d9aae789d 100644
--- a/connectivity/source/parse/internalnode.cxx
+++ b/connectivity/source/parse/internalnode.cxx
@@ -35,20 +35,20 @@ OSQLInternalNode::OSQLInternalNode(const sal_Char* pNewValue,
}
-OSQLInternalNode::OSQLInternalNode(const OString &_NewValue,
+OSQLInternalNode::OSQLInternalNode(const OString &NewValue,
SQLNodeType eNodeType,
sal_uInt32 nNodeID)
- :OSQLParseNode(_NewValue,eNodeType,nNodeID)
+ :OSQLParseNode(NewValue,eNodeType,nNodeID)
{
OSL_ENSURE(OSQLParser::s_pGarbageCollector, "Collector not initialized");
(*OSQLParser::s_pGarbageCollector)->push_back(this);
}
-OSQLInternalNode::OSQLInternalNode(const OUString &_NewValue,
+OSQLInternalNode::OSQLInternalNode(const OUString &NewValue,
SQLNodeType eNodeType,
sal_uInt32 nNodeID)
- :OSQLParseNode(_NewValue,eNodeType,nNodeID)
+ :OSQLParseNode(NewValue,eNodeType,nNodeID)
{
OSL_ENSURE(OSQLParser::s_pGarbageCollector, "Collector not initialized");
(*OSQLParser::s_pGarbageCollector)->push_back(this);