summaryrefslogtreecommitdiff
path: root/include/connectivity/CommonTools.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-06 15:30:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-06 15:31:06 +0200
commit5aadbc15a5ab18441026a3dfc75a35dba0146337 (patch)
tree1affbee906f225374944c1502682610c35b91810 /include/connectivity/CommonTools.hxx
parent4de70892adcfb546e540680d803531d80c31c808 (diff)
Avoid reserved identifiers
Change-Id: I2217920ced336189a94c0a5d1e3ac0ccd3912881
Diffstat (limited to 'include/connectivity/CommonTools.hxx')
-rw-r--r--include/connectivity/CommonTools.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/connectivity/CommonTools.hxx b/include/connectivity/CommonTools.hxx
index 55471fe83a1b..afd3e71d7d66 100644
--- a/include/connectivity/CommonTools.hxx
+++ b/include/connectivity/CommonTools.hxx
@@ -107,28 +107,28 @@ namespace connectivity
typedef ORefVector< css::uno::Reference< css::beans::XPropertySet> > OSQLColumns;
- // search from __first to __last the column with the name _rVal
- // when no such column exist __last is returned
+ // search from first to last the column with the name _rVal
+ // when no such column exist last is returned
OOO_DLLPUBLIC_DBTOOLS
- OSQLColumns::Vector::const_iterator find( OSQLColumns::Vector::const_iterator __first,
- OSQLColumns::Vector::const_iterator __last,
+ OSQLColumns::Vector::const_iterator find( OSQLColumns::Vector::const_iterator first,
+ OSQLColumns::Vector::const_iterator last,
const OUString& _rVal,
const ::comphelper::UStringMixEqual& _rCase);
- // search from __first to __last the column with the realname _rVal
- // when no such column exist __last is returned
+ // search from first to last the column with the realname _rVal
+ // when no such column exist last is returned
OOO_DLLPUBLIC_DBTOOLS
- OSQLColumns::Vector::const_iterator findRealName( OSQLColumns::Vector::const_iterator __first,
- OSQLColumns::Vector::const_iterator __last,
+ OSQLColumns::Vector::const_iterator findRealName( OSQLColumns::Vector::const_iterator first,
+ OSQLColumns::Vector::const_iterator last,
const OUString& _rVal,
const ::comphelper::UStringMixEqual& _rCase);
// the first two find methods are much faster than the one below
- // search from __first to __last the column with the property _rProp equals the value _rVal
- // when no such column exist __last is returned
+ // search from first to last the column with the property _rProp equals the value _rVal
+ // when no such column exist last is returned
OOO_DLLPUBLIC_DBTOOLS
- OSQLColumns::Vector::const_iterator find( OSQLColumns::Vector::const_iterator __first,
- OSQLColumns::Vector::const_iterator __last,
+ OSQLColumns::Vector::const_iterator find( OSQLColumns::Vector::const_iterator first,
+ OSQLColumns::Vector::const_iterator last,
const OUString& _rProp,
const OUString& _rVal,
const ::comphelper::UStringMixEqual& _rCase);