diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2016-06-04 17:40:09 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2016-06-04 17:40:50 +0200 |
commit | 4005d61cd1bdd71bb74c316f3ad30d23ba459b90 (patch) | |
tree | 57c47e2d042c807b72e3cc9e5b85990de046d954 /dbaccess | |
parent | 954f853c7b776719a6dfd5230d2be6ea3e948fcf (diff) |
tdf#96516 fixup: when removing entry, entry count does not stay constant
Change-Id: I192a2d14787581545e66c46a84507f6dfd191c57
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/querydlg.cxx | 3 |
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 ) |