summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2000-09-18 22:13:49 +0000
committerOliver Bolte <obo@openoffice.org>2000-09-18 22:13:49 +0000
commit543abf9abe36e8e4d2b9476205e382882c29fe11 (patch)
tree4772284865ad9857509dbbb7a7d98604b8afa054 /stoc
parent180d9c145fd5cf2942be8bb3a8ed35061e844fd7 (diff)
__cdecl isn't potable
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/invocation/invocation.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx
index fa065dc4331f..7e62cfb02f99 100644
--- a/stoc/source/invocation/invocation.cxx
+++ b/stoc/source/invocation/invocation.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: invocation.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 15:29:34 $
+ * last change: $Author: obo $ $Date: 2000-09-18 23:13:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -713,7 +713,8 @@ struct MemberItem
};
// qsort compare function for MemberItem
-int __cdecl compare(const void *elem1, const void *elem2 )
+//int __cdecl compare(const void *elem1, const void *elem2 )
+int SAL_CALL compare(const void *elem1, const void *elem2 )
{
MemberItem* pItem1 = *(MemberItem**)elem1;
MemberItem* pItem2 = *(MemberItem**)elem2;