summaryrefslogtreecommitdiff
path: root/extensions/source/update/feed/updatefeed.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/update/feed/updatefeed.cxx')
-rw-r--r--extensions/source/update/feed/updatefeed.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/update/feed/updatefeed.cxx b/extensions/source/update/feed/updatefeed.cxx
index 86a8d93fcd34..2c8afbb9197e 100644
--- a/extensions/source/update/feed/updatefeed.cxx
+++ b/extensions/source/update/feed/updatefeed.cxx
@@ -300,14 +300,14 @@ public:
uno::Any SAL_CALL nextElement() throw (container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException)
{
if( m_nCount > 0 )
- throw container::NoSuchElementException(OUString::boolean(m_nCount), *this);
+ throw container::NoSuchElementException(OUString::number(m_nCount), *this);
++m_nCount;
return uno::makeAny(m_aEntry);
};
private:
- sal_uInt8 m_nCount;
+ sal_Int32 m_nCount;
deployment::UpdateInformationEntry m_aEntry;
};