diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-06-21 10:32:19 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-06-21 10:32:19 +0000 |
commit | 117d5bd3ab189c693dd6405abb183da91ece5ca3 (patch) | |
tree | 7688ec0c93b20bd96eac0a02fa4cf231b196c077 /idl/source/objects/slot.cxx | |
parent | 1504d9a9037023ac2e0ee35d4a89da6a51f7c376 (diff) |
#i10000#: cast to avoid overload ambiguity between SvSlotElement::Seek(unsigned long) and SvSlotElement::Seek(void*), hope this doesn't break 64bit build again
Diffstat (limited to 'idl/source/objects/slot.cxx')
-rw-r--r-- | idl/source/objects/slot.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index bcf00774ac0e..657964c32869 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -2,9 +2,9 @@ * * $RCSfile: slot.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: rt $ $Date: 2004-06-17 13:30:09 $ + * last change: $Author: hr $ $Date: 2004-06-21 11:32:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1223,7 +1223,7 @@ void SvMetaSlot::Insert( SvSlotElementList& rList, const ByteString & rPrefix, pLinkedSlot = pFirstEnumSlot; // Slaves untereinander verketten - rList.Seek(0U); + rList.Seek((ULONG)0); xEnumSlot = pFirstEnumSlot; SvSlotElement *pEle; do |