summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2016-06-04 17:40:09 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-06-06 08:33:07 +0000
commit22ea5aef84996520062b2c5d58757cd6f00c98ee (patch)
treefad995212b91e36bec230f86cbd63a1b93bcd087 /dbaccess
parent6317bcfd353a02d957811f2b6cb343cc3a3bbbec (diff)
tdf#96516 fixup: when removing entry, entry count does not stay constant
Change-Id: I192a2d14787581545e66c46a84507f6dfd191c57 Reviewed-on: https://gerrit.libreoffice.org/25891 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/querydesign/querydlg.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/querydlg.cxx b/dbaccess/source/ui/querydesign/querydlg.cxx
index 3ea04b4e6d23..48b219574401 100644
--- a/dbaccess/source/ui/querydesign/querydlg.cxx
+++ b/dbaccess/source/ui/querydesign/querydlg.cxx
@@ -122,8 +122,7 @@ DlgQryJoin::DlgQryJoin( OQueryTableView * pParent,
}
else
{
- const sal_Int32 nCount = m_pLB_JoinType->GetEntryCount();
- for (sal_Int32 i = 0; i < nCount;)
+ for (sal_Int32 i = 0; i < m_pLB_JoinType->GetEntryCount();)
{
const sal_IntPtr nJoinTyp = reinterpret_cast<sal_IntPtr>(m_pLB_JoinType->GetEntryData(i));
if ( !bSupportFullJoin && nJoinTyp == ID_FULL_JOIN )