diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 2ec57765b45e..cbe7992852df 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -2105,12 +2105,13 @@ public: return S_OK; } - virtual HRESULT STDMETHODCALLTYPE STDMETHODCALLTYPE Skip(ULONG celt) override + virtual HRESULT STDMETHODCALLTYPE STDMETHODCALLTYPE Skip(ULONG const celt) override { comphelper::Automation::AutomationInvokedZone aAutomationActive; + ULONG nLeft = celt; ULONG nSkipped = 0; - while (celt > 0) + while (nLeft > 0) { if (mnIndex > mxCollection->getCount()) { @@ -2118,7 +2119,7 @@ public: return S_FALSE; } mnIndex++; - celt--; + nLeft--; } SAL_INFO("extensions.olebridge", this << "@CXEnumVariant::Skip(" << celt << "): S_OK"); return S_OK; |