? unxlngx4.pro Index: inc/recording/dispatchrecorder.hxx =================================================================== RCS file: /cvs/framework/framework/inc/recording/dispatchrecorder.hxx,v retrieving revision 1.6 diff -u -r1.6 dispatchrecorder.hxx --- inc/recording/dispatchrecorder.hxx 25 Mar 2003 18:19:49 -0000 1.6 +++ inc/recording/dispatchrecorder.hxx 21 Jul 2004 18:33:52 -0000 @@ -126,9 +126,9 @@ virtual sal_Int32 SAL_CALL getCount() throw (::com::sun::star::uno::RuntimeException); - virtual com::sun::star::uno::Any SAL_CALL getByIndex(long int) throw (com::sun::star::uno::RuntimeException, com::sun::star::lang::WrappedTargetException, com::sun::star::lang::IndexOutOfBoundsException); + virtual com::sun::star::uno::Any SAL_CALL getByIndex(sal_Int32) throw (com::sun::star::uno::RuntimeException, com::sun::star::lang::WrappedTargetException, com::sun::star::lang::IndexOutOfBoundsException); - virtual void SAL_CALL replaceByIndex(long int, const com::sun::star::uno::Any&) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL replaceByIndex(sal_Int32, const com::sun::star::uno::Any&) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); // private functions private: Index: source/uiconfiguration/moduleuiconfigurationmanager.cxx =================================================================== RCS file: /cvs/framework/framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx,v retrieving revision 1.4 diff -u -r1.4 moduleuiconfigurationmanager.cxx --- source/uiconfiguration/moduleuiconfigurationmanager.cxx 10 Jun 2004 13:23:35 -0000 1.4 +++ source/uiconfiguration/moduleuiconfigurationmanager.cxx 21 Jul 2004 18:33:52 -0000 @@ -828,7 +828,7 @@ Reference< XPropertySet > xPropSet( m_xUserConfigStorage, UNO_QUERY ); if ( xPropSet.is() ) { - long nOpenMode; + sal_Int32 nOpenMode; Any a = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OpenMode" ))); if ( a >>= nOpenMode ) m_bReadOnly = !( nOpenMode & ElementModes::WRITE ); Index: source/uiconfiguration/uiconfigurationmanager.cxx =================================================================== RCS file: /cvs/framework/framework/source/uiconfiguration/uiconfigurationmanager.cxx,v retrieving revision 1.4 diff -u -r1.4 uiconfigurationmanager.cxx --- source/uiconfiguration/uiconfigurationmanager.cxx 10 Jun 2004 13:23:51 -0000 1.4 +++ source/uiconfiguration/uiconfigurationmanager.cxx 21 Jul 2004 18:33:52 -0000 @@ -1097,7 +1097,7 @@ { try { - long nOpenMode; + sal_Int32 nOpenMode; Any a = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OpenMode" ))); if ( a >>= nOpenMode ) m_bReadOnly = !( nOpenMode & ElementModes::WRITE );