diff options
author | Chr. Rossmanith <ChrRossmanith@gmx.de> | 2011-05-26 15:02:42 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-05-26 15:05:21 +0200 |
commit | e6703ce8a24fdc5b1698f0c3789b4423a84ad8fa (patch) | |
tree | 65a08757905ca9a5fecbc62ef56a3f70d8fe0e82 /toolkit | |
parent | 9874d32b0b8c4b385a13baaf37bcf66b857c727f (diff) |
remove __cdecl and use SAL_CALL instead
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxtoolkit.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index c879e4b6bd2c..9b791a26b23c 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -340,11 +340,7 @@ static ComponentInfo aComponentInfos [] = extern "C" { -static int -#if defined( WNT ) - __cdecl -#endif - ComponentInfoCompare( const void* pFirst, const void* pSecond) +static int SAL_CALL ComponentInfoCompare( const void* pFirst, const void* pSecond) { return( strcmp( ((ComponentInfo*)pFirst)->pName, ((ComponentInfo*)pSecond)->pName ) ); |