summaryrefslogtreecommitdiff
path: root/xmlsecurity
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-10-05 13:56:56 +0000
committerKurt Zenker <kz@openoffice.org>2005-10-05 13:56:56 +0000
commit698ced7eef2e5b1abff4981aaeef5f6bb07fbf0e (patch)
treebfe2777ff25e025ed266b55d2ebaac4d3038251e /xmlsecurity
parent475b0d4a83f10bed9be18b1d7690cc3415b609ea (diff)
INTEGRATION: CWS intptr (1.7.42); FILE MERGED
2005/09/13 14:50:31 kendy 1.7.42.1: #i54498# Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer
Diffstat (limited to 'xmlsecurity')
-rw-r--r--xmlsecurity/source/dialogs/certificatechooser.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlsecurity/source/dialogs/certificatechooser.cxx b/xmlsecurity/source/dialogs/certificatechooser.cxx
index 711016c4e91d..4a1d2f49e032 100644
--- a/xmlsecurity/source/dialogs/certificatechooser.cxx
+++ b/xmlsecurity/source/dialogs/certificatechooser.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: certificatechooser.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 17:10:17 $
+ * last change: $Author: kz $ $Date: 2005-10-05 14:56:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -70,7 +70,7 @@ USHORT CertificateChooser::GetSelectedEntryPos( void ) const
SvLBoxEntry* pSel = maCertLB.FirstSelected();
if( pSel )
- nSel = (USHORT) ( sal_Int32 ) pSel->GetUserData();
+ nSel = (USHORT) ( sal_uIntPtr ) pSel->GetUserData();
return (USHORT) nSel;
}