summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--comphelper/source/misc/numberedcollection.cxx8
-rw-r--r--tools/source/rc/resmgr.cxx4
2 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/source/misc/numberedcollection.cxx b/comphelper/source/misc/numberedcollection.cxx
index f7f4d122c009..2f3e357f0167 100644
--- a/comphelper/source/misc/numberedcollection.cxx
+++ b/comphelper/source/misc/numberedcollection.cxx
@@ -74,8 +74,8 @@ void NumberedCollection::setUntitledPrefix(const OUString& sPrefix)
if ( ! xComponent.is ())
throw css::lang::IllegalArgumentException (OUString(ERRMSG_INVALID_COMPONENT_PARAM), m_xOwner.get(), 1);
- long pComponent = (long) xComponent.get ();
- TNumberedItemHash::const_iterator pIt = m_lComponents.find (pComponent);
+ sal_IntPtr pComponent = (sal_IntPtr) xComponent.get ();
+ TNumberedItemHash::const_iterator pIt = m_lComponents.find (pComponent);
// a) component already exists - return it's number directly
if (pIt != m_lComponents.end())
@@ -150,8 +150,8 @@ void SAL_CALL NumberedCollection::releaseNumberForComponent(const css::uno::Refe
if ( ! xComponent.is ())
throw css::lang::IllegalArgumentException (OUString(ERRMSG_INVALID_COMPONENT_PARAM), m_xOwner.get(), 1);
- long pComponent = (long) xComponent.get ();
- TNumberedItemHash::iterator pIt = m_lComponents.find (pComponent);
+ sal_IntPtr pComponent = (sal_IntPtr) xComponent.get ();
+ TNumberedItemHash::iterator pIt = m_lComponents.find (pComponent);
// a) component exists and will be removed
if (pIt != m_lComponents.end())
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx
index 519dcea67eeb..d18835c30495 100644
--- a/tools/source/rc/resmgr.cxx
+++ b/tools/source/rc/resmgr.cxx
@@ -1235,9 +1235,9 @@ sal_uInt32 ResMgr::GetRemainSize()
return pFallbackResMgr->GetRemainSize();
const ImpRCStack& rTop = aStack[nCurStack];
- return (sal_uInt32)((long)(sal_uInt8 *)rTop.pResource +
+ return (sal_uInt32)((sal_IntPtr)(sal_uInt8 *)rTop.pResource +
rTop.pResource->GetLocalOff() -
- (long)(sal_uInt8 *)rTop.pClassRes);
+ (sal_IntPtr)(sal_uInt8 *)rTop.pClassRes);
}
void* ResMgr::Increment( sal_uInt32 nSize )
c7bd55755037c49f8fdfb29a5fc33c870c'>Explicitely mention --disable-gio in distro-configs/LibreOfficeLinux.confPetr Mladek 2013-03-23There is no --enable-ext-report-builder any moreAndras Timar 2013-03-22There is no --disable-ext-report-builder any moreTor Lillqvist