View | Details | Raw Unified | Return to issue 25572
Collapse All | Expand All

(-)ooo_1.1.0_src.orig/framework/inc/recording/dispatchrecorder.hxx (-2 / +2 lines)
Lines 126-134 Link Here
126
126
127
	virtual sal_Int32 SAL_CALL getCount() throw (::com::sun::star::uno::RuntimeException);
127
	virtual sal_Int32 SAL_CALL getCount() throw (::com::sun::star::uno::RuntimeException);
128
128
129
	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);
129
	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);
130
130
131
	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);
131
	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);
132
132
133
    // private functions
133
    // private functions
134
    private:
134
    private:
(-)ooo_1.1.0_src.orig/framework/inc/services/pluginframe.hxx (-1 / +1 lines)
Lines 395-401 Link Here
395
			@onerror	-
395
			@onerror	-
396
		*//*-*****************************************************************************************************/
396
		*//*-*****************************************************************************************************/
397
397
398
		virtual long doIt();
398
		virtual sal_Int32 doIt();
399
399
400
	//-------------------------------------------------------------------------------------------------------------
400
	//-------------------------------------------------------------------------------------------------------------
401
	//	private variables
401
	//	private variables
(-)ooo_1.1.0_src.orig/framework/source/services/logindialog.cxx (-1 / +1 lines)
Lines 408-414 Link Here
408
408
409
	if ( aProxyHostPort.indexOf( (sal_Unicode)':' ) > 0 ) // is there a port
409
	if ( aProxyHostPort.indexOf( (sal_Unicode)':' ) > 0 ) // is there a port
410
	{
410
	{
411
		long nTokenIndex = 0;
411
		sal_Int32 nTokenIndex = 0;
412
		OUString tmp = aProxyHostPort.getToken( 0, (sal_Unicode)':', nTokenIndex );
412
		OUString tmp = aProxyHostPort.getToken( 0, (sal_Unicode)':', nTokenIndex );
413
		aPort = aProxyHostPort.getToken( 0, (sal_Unicode)':', nTokenIndex );
413
		aPort = aProxyHostPort.getToken( 0, (sal_Unicode)':', nTokenIndex );
414
		aHost = tmp;
414
		aHost = tmp;

Return to issue 25572