summaryrefslogtreecommitdiffstats
path: root/connectivity/source/commontools
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools')
-rw-r--r--connectivity/source/commontools/CommonTools.cxx4
-rw-r--r--connectivity/source/commontools/TPrivilegesResultSet.cxx2
-rw-r--r--connectivity/source/commontools/dbtools.cxx2
-rw-r--r--connectivity/source/commontools/parameters.cxx4
-rw-r--r--connectivity/source/commontools/paramwrapper.cxx2
-rw-r--r--connectivity/source/commontools/predicateinput.cxx4
-rw-r--r--connectivity/source/commontools/warningscontainer.cxx4
7 files changed, 11 insertions, 11 deletions
diff --git a/connectivity/source/commontools/CommonTools.cxx b/connectivity/source/commontools/CommonTools.cxx
index eb06c5551b67..615cfe6c582f 100644
--- a/connectivity/source/commontools/CommonTools.cxx
+++ b/connectivity/source/commontools/CommonTools.cxx
@@ -197,8 +197,8 @@ bool isValidSQLName(const OUString& rName,const OUString& _rSpecials)
)
return false;
// the SQL-Standard requires the first character to be an alphabetic character, which
- // isn't easy to decide in UniCode ...
- // So we just prohibit the characters which already lead to problems ....
+ // isn't easy to decide in UniCode...
+ // So we just prohibit the characters which already lead to problems...
// 11.04.00 - 74902 - FS
return true;
diff --git a/connectivity/source/commontools/TPrivilegesResultSet.cxx b/connectivity/source/commontools/TPrivilegesResultSet.cxx
index 6347e3e17d71..de255d3cb8c1 100644
--- a/connectivity/source/commontools/TPrivilegesResultSet.cxx
+++ b/connectivity/source/commontools/TPrivilegesResultSet.cxx
@@ -42,7 +42,7 @@ OResultSetPrivileges::OResultSetPrivileges( const Reference< XDatabaseMetaData>&
// we want all catalogues, all schemas, all tables
sTableTypes[0] = "VIEW";
sTableTypes[1] = "TABLE";
- sTableTypes[2] = "%"; // just to be sure to include anything else ....
+ sTableTypes[2] = "%"; // just to be sure to include anything else...
try
{
m_xTables = _rxMeta->getTables(catalog,schemaPattern,tableNamePattern,sTableTypes);
diff --git a/connectivity/source/commontools/dbtools.cxx b/connectivity/source/commontools/dbtools.cxx
index 75df94ec8ea1..514b026b26c9 100644
--- a/connectivity/source/commontools/dbtools.cxx
+++ b/connectivity/source/commontools/dbtools.cxx
@@ -1062,7 +1062,7 @@ try
bool bIsString = aEffectiveDefault.getValueType().getTypeClass() == TypeClass_STRING;
OSL_ENSURE(bIsString || aEffectiveDefault.getValueType().getTypeClass() == TypeClass_DOUBLE,
"TransferFormComponentProperties : invalid property type !");
- // The Effective-Properties should always be void or string or double ....
+ // The Effective-Properties should always be void or string or double...
if (hasProperty(sPropDefaultDate, xNewProps) && !bIsString)
{ // (to convert an OUString into a date will not always succeed, because it might be bound to a text-column,
diff --git a/connectivity/source/commontools/parameters.cxx b/connectivity/source/commontools/parameters.cxx
index 4502dbc0687e..3862ebf0ff08 100644
--- a/connectivity/source/commontools/parameters.cxx
+++ b/connectivity/source/commontools/parameters.cxx
@@ -479,10 +479,10 @@ namespace dbtools
if ( nAlreadyVisited == aParam.second.aInnerIndexes.size() )
continue;
- // need a wrapper for this .... the "inner parameters" as supplied by a result set don't have a "Value"
+ // need a wrapper for this... the "inner parameters" as supplied by a result set don't have a "Value"
// property, but the parameter listeners expect such a property. So we need an object "aggregating"
// xParam and supplying an additional property ("Value")
- // (it's no real aggregation of course ...)
+ // (it's no real aggregation of course...)
m_pOuterParameters->push_back( new param::ParameterWrapper( aParam.second.xComposerColumn, m_xInnerParamUpdate, aParam.second.aInnerIndexes ) );
}
diff --git a/connectivity/source/commontools/paramwrapper.cxx b/connectivity/source/commontools/paramwrapper.cxx
index aae53c2d2a0f..92c78e319276 100644
--- a/connectivity/source/commontools/paramwrapper.cxx
+++ b/connectivity/source/commontools/paramwrapper.cxx
@@ -194,7 +194,7 @@ namespace param
{
try
{
- // TODO : aParamType & nScale can be obtained within the constructor ....
+ // TODO : aParamType & nScale can be obtained within the constructor...
sal_Int32 nParamType = DataType::VARCHAR;
OSL_VERIFY( m_xDelegator->getPropertyValue("Type") >>= nParamType );
diff --git a/connectivity/source/commontools/predicateinput.cxx b/connectivity/source/commontools/predicateinput.cxx
index 1c8812a8591c..7b9e1a1960ee 100644
--- a/connectivity/source/commontools/predicateinput.cxx
+++ b/connectivity/source/commontools/predicateinput.cxx
@@ -276,7 +276,7 @@ namespace dbtools
if ( _rxField.is() )
{
// The following is mostly stolen from the former implementation in the parameter dialog
- // (dbaccess/source/ui/dlg/paramdialog.cxx). I do not fully understand this .....
+ // (dbaccess/source/ui/dlg/paramdialog.cxx). I do not fully understand this...
OUString sError;
std::unique_ptr<OSQLParseNode> pParseNode = implPredicateTree( sError, _rPredicateValue, _rxField );
@@ -340,7 +340,7 @@ namespace dbtools
if ( _rxField.is() )
{
// The following is mostly stolen from the former implementation in the parameter dialog
- // (dbaccess/source/ui/dlg/paramdialog.cxx). I do not fully understand this .....
+ // (dbaccess/source/ui/dlg/paramdialog.cxx). I do not fully understand this...
OUString sError;
std::unique_ptr<OSQLParseNode> pParseNode = implPredicateTree( sError, _rPredicateValue, _rxField );
diff --git a/connectivity/source/commontools/warningscontainer.cxx b/connectivity/source/commontools/warningscontainer.cxx
index 65478f9c03ce..adb384be680d 100644
--- a/connectivity/source/commontools/warningscontainer.cxx
+++ b/connectivity/source/commontools/warningscontainer.cxx
@@ -42,8 +42,8 @@ namespace dbtools
_rChainLeft = _rChainRight;
else
{
- // to travel the chain by reference (and not by value), we need the getValue ...
- // looks like a hack, but the meaning of getValue is documented, and it's the only chance for reference-traveling ....
+ // to travel the chain by reference (and not by value), we need the getValue...
+ // looks like a hack, but the meaning of getValue is documented, and it's the only chance for reference-traveling...
OSL_ENSURE( SQLExceptionInfo( _rChainLeft ).isValid(),
"lcl_concatWarnings: invalid warnings chain (this will crash)!" );