summaryrefslogtreecommitdiffstats
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2011-10-29 08:03:28 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2011-10-30 12:39:35 +0100
commitd8e643124e77f166dc44100e0123747ae1097e3d (patch)
tree7321689e39623e27901ea9cef42a2450c11312a3 /connectivity
parentremove localization tool of obsoleted layout code (diff)
downloadcore-d8e643124e77f166dc44100e0123747ae1097e3d.tar.gz
core-d8e643124e77f166dc44100e0123747ae1097e3d.zip
overhaul / enhance / translate / ... comments
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/inc/connectivity/sqlnode.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/connectivity/inc/connectivity/sqlnode.hxx b/connectivity/inc/connectivity/sqlnode.hxx
index 5b010bc03333..ddb058cbcd7f 100644
--- a/connectivity/inc/connectivity/sqlnode.hxx
+++ b/connectivity/inc/connectivity/sqlnode.hxx
@@ -333,7 +333,7 @@ namespace connectivity
sal_Bool _bIntl = sal_False,
sal_Bool _bQuote= sal_True) const;
- // quoted und internationalisert
+ // quoted and internationalised
void parseNodeToPredicateStr(::rtl::OUString& rString,
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection,
const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter > & xFormatter,
@@ -352,14 +352,14 @@ namespace connectivity
OSQLParseNode* getByRule(OSQLParseNode::Rule eRule) const;
#if OSL_DEBUG_LEVEL > 0
- // shows the ParseTree with tabs and linefeeds
+ // shows the ParseTree with tabs and linefeeds
void showParseTree( ::rtl::OUString& rString ) const;
void showParseTree( ::rtl::OUStringBuffer& _inout_rBuf, sal_uInt32 nLevel ) const;
#endif
SQLNodeType getNodeType() const {return m_eNodeType;};
- // RuleId returns the RuleID of the node's rule (only if IsRule())
+ // RuleId returns the RuleID of the node's rule (only if IsRule())
sal_uInt32 getRuleID() const {return m_nNodeID;}
/** returns the ID of the rule represented by the node
@@ -392,17 +392,17 @@ namespace connectivity
// e.q. (a or b) and (c or d) <=> a and c or a and d or b and c or b and d
static void disjunctiveNormalForm(OSQLParseNode*& pSearchCondition);
- // Simplies logic expressions
- // a * a = a
- // a + a = a
- // a * ( a + b) = a
- // a + a * b = a
+ // Simplifies logic expressions
+ // a and a = a
+ // a or a = a
+ // a and ( a + b) = a
+ // a or a and b = a
static void absorptions(OSQLParseNode*& pSearchCondition);
- // erase not nessary braces
+ // erase unnecessary braces
static void eraseBraces(OSQLParseNode*& pSearchCondition);
- // makes the logic formula a little more smaller
+ // makes the logic formula a little smaller
static void compress(OSQLParseNode*& pSearchCondition);
// return the catalog, schema and tablename form this node
// _pTableNode must be a rule of that above or a SQL_TOKEN_NAME
@@ -412,7 +412,7 @@ namespace connectivity
::rtl::OUString &_rTable
,const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _xMetaData);
- // susbtitute all occurrences of :var or [name] into the dynamic parameter ?
+ // substitute all occurrences of :var or [name] into the dynamic parameter ?
// _pNode will be modified if parameters exists
static void substituteParameterNames(OSQLParseNode* _pNode);
@@ -421,7 +421,7 @@ namespace connectivity
static ::rtl::OUString getTableRange(const OSQLParseNode* _pTableRef);
protected:
- // ParseNodeToStr konkateniert alle Token (leaves) des ParseNodes
+ // ParseNodeToStr concatenates all Tokens (leaves) of the ParseNodes.
void parseNodeToStr(::rtl::OUString& rString,
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _rxConnection,
const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter > & xFormatter,
@@ -462,7 +462,7 @@ namespace connectivity
return m_aChildren.at(nPos);
}
- // Utility-Methoden zum Abfragen auf bestimmte Rules, Token oder Punctuation:
+ // utilities to query for a specific rule, token or punctuation
#define SQL_ISRULE(pParseNode, eRule) ((pParseNode)->isRule() && (pParseNode)->getRuleID() == OSQLParser::RuleID(OSQLParseNode::eRule))
#define SQL_ISTOKEN(pParseNode, token) ((pParseNode)->isToken() && (pParseNode)->getTokenID() == SQL_TOKEN_##token)
#define SQL_ISPUNCTUATION(pParseNode, aString) ((pParseNode)->getNodeType() == SQL_NODE_PUNCTUATION && !(pParseNode)->getTokenValue().compareToAscii(aString))