diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 12:52:10 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-10 14:03:34 +0200 |
commit | ce959ab7ce4c9577ac23953919781d842e6c32e5 (patch) | |
tree | 6f105039a14a37aa3734d928a97ea5f5d62f6ad3 /tools | |
parent | 43135665bf9093c52f424069bcf83d50a93bdc0c (diff) |
mingw64: use the right integer sizes on win64
Change-Id: Idb263ad369d2dad4fe4de924f2b2404a0fcf62d3
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/rc/resary.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/rc/resary.cxx b/tools/source/rc/resary.cxx index f3d49f053c96..77f3ee74ecf3 100644 --- a/tools/source/rc/resary.cxx +++ b/tools/source/rc/resary.cxx @@ -49,7 +49,7 @@ ResStringArray::~ResStringArray() { } -sal_uInt32 ResStringArray::FindIndex( long nValue ) const +sal_uInt32 ResStringArray::FindIndex( sal_IntPtr nValue ) const { const sal_uInt32 nItems = m_aStrings.size(); for ( sal_uInt32 i = 0; i < nItems; i++ ) |