diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 15:30:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 15:31:06 +0200 |
commit | 5aadbc15a5ab18441026a3dfc75a35dba0146337 (patch) | |
tree | 1affbee906f225374944c1502682610c35b91810 /include/connectivity/CommonTools.hxx | |
parent | 4de70892adcfb546e540680d803531d80c31c808 (diff) |
Avoid reserved identifiers
Change-Id: I2217920ced336189a94c0a5d1e3ac0ccd3912881
Diffstat (limited to 'include/connectivity/CommonTools.hxx')
-rw-r--r-- | include/connectivity/CommonTools.hxx | 24 |
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); |