summaryrefslogtreecommitdiff
path: root/dbaccess/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-10-05 13:44:23 +0000
committerKurt Zenker <kz@openoffice.org>2005-10-05 13:44:23 +0000
commitbb9a44526d3d0cd0463a2a3edecea52982659c2b (patch)
tree0d5fc7a78b89728a2edfff9f3970d3b921f48cf6 /dbaccess/source
parent9e8118995cfc3c1462978fd049b10bfebf7c1b71 (diff)
INTEGRATION: CWS intptr (1.20.96); FILE MERGED
2005/09/13 14:50:22 kendy 1.20.96.1: #i54498# Introduce and use sal_IntPtr/sal_uIntPtr for ints where we have to store a pointer
Diffstat (limited to 'dbaccess/source')
-rw-r--r--dbaccess/source/ui/app/AppController.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/app/AppController.cxx b/dbaccess/source/ui/app/AppController.cxx
index 0ad2d8bab..33e8fb934 100644
--- a/dbaccess/source/ui/app/AppController.cxx
+++ b/dbaccess/source/ui/app/AppController.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: AppController.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: hr $ $Date: 2005-09-23 12:14:21 $
+ * last change: $Author: kz $ $Date: 2005-10-05 14:44:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1725,7 +1725,7 @@ Reference< XComponent > OApplicationController::openElement(const ::rtl::OUStrin
// -----------------------------------------------------------------------------
IMPL_LINK( OApplicationController, OnCreateWithPilot, void*, _pType )
{
- ElementType eType = (ElementType)reinterpret_cast< int >( _pType );
+ ElementType eType = (ElementType)reinterpret_cast< sal_IntPtr >( _pType );
newElementWithPilot( eType );
return 0L;
}