summaryrefslogtreecommitdiff
path: root/connectivity/source/commontools/CommonTools.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-16 16:22:51 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-16 16:22:51 +0000
commit2a39fb22e32bb1df3dd72653895bdfe43418e3d9 (patch)
tree3819497cc2256cb2d6b239bf067c516d3d239957 /connectivity/source/commontools/CommonTools.cxx
parentc442f9a24723bc03a1cc8d81987b85c36156c863 (diff)
INTEGRATION: CWS dr33 (1.17.36); FILE MERGED
2005/02/14 16:33:51 dr 1.17.36.1: #i42367# remove non-ASCII characters from C++ sources
Diffstat (limited to 'connectivity/source/commontools/CommonTools.cxx')
-rw-r--r--connectivity/source/commontools/CommonTools.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/commontools/CommonTools.cxx b/connectivity/source/commontools/CommonTools.cxx
index cb2f2bef0b2f..406377969248 100644
--- a/connectivity/source/commontools/CommonTools.cxx
+++ b/connectivity/source/commontools/CommonTools.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CommonTools.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: hr $ $Date: 2004-11-09 11:45:46 $
+ * last change: $Author: vg $ $Date: 2005-02-16 17:22:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -355,8 +355,8 @@ sal_Bool isCharOk(char c,const ::rtl::OUString& _rSpecials);
//------------------------------------------------------------------------------
sal_Bool isValidSQLName(const ::rtl::OUString& rName,const ::rtl::OUString& _rSpecials)
{
- // berprfung auf korrekte Namensgebung im SQL Sinne
- // Dieses ist wichtig fr Tabellennamen beispielsweise
+ // Ueberpruefung auf korrekte Namensgebung im SQL Sinne
+ // Dieses ist wichtig fuer Tabellennamen beispielsweise
::rtl::OString aName(rName,rName.getLength(),RTL_TEXTENCODING_ASCII_US);
const char* pStr = aName.getStr();
if (isdigit(*pStr))