diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-04-29 16:34:25 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-04-29 16:35:32 +0200 |
commit | e34d9be24e72649a78639314145bd9aaabd7ea83 (patch) | |
tree | 5d67795af8190c48f2ffed12ad67831ba0792625 /dbaccess | |
parent | f45de1bed2f116ba3846c6fc2b1eb52f757c25f0 (diff) |
Prefix ++/-- operators for non-primitive types
Change-Id: I827e539c65a7463709af6425d39ccaaedaa73a8d
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/KeySet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx index fe3a2b1c1e7a..309d6d8d02d5 100644 --- a/dbaccess/source/core/api/KeySet.cxx +++ b/dbaccess/source/core/api/KeySet.cxx @@ -1229,7 +1229,7 @@ sal_Bool OKeySet::absolute_checked( sal_Int32 row,sal_Bool i_bFetchRow ) fillAllRows(); for(;row < 0 && m_aKeyIter != m_aKeyMap.begin();++row) - m_aKeyIter--; + --m_aKeyIter; } else { |