From e34d9be24e72649a78639314145bd9aaabd7ea83 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sun, 29 Apr 2012 16:34:25 +0200 Subject: Prefix ++/-- operators for non-primitive types Change-Id: I827e539c65a7463709af6425d39ccaaedaa73a8d --- dbaccess/source/core/api/KeySet.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbaccess') 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 { -- cgit