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

(-)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:
(-)source/uiconfiguration/moduleuiconfigurationmanager.cxx (-1 / +1 lines)
Lines 828-834 Link Here
828
            Reference< XPropertySet > xPropSet( m_xUserConfigStorage, UNO_QUERY );
828
            Reference< XPropertySet > xPropSet( m_xUserConfigStorage, UNO_QUERY );
829
            if ( xPropSet.is() )
829
            if ( xPropSet.is() )
830
            {
830
            {
831
                long nOpenMode;
831
                sal_Int32 nOpenMode;
832
                Any a = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OpenMode" )));
832
                Any a = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OpenMode" )));
833
                if ( a >>= nOpenMode )
833
                if ( a >>= nOpenMode )
834
                    m_bReadOnly = !( nOpenMode & ElementModes::WRITE );
834
                    m_bReadOnly = !( nOpenMode & ElementModes::WRITE );
(-)source/uiconfiguration/uiconfigurationmanager.cxx (-1 / +1 lines)
Lines 1097-1103 Link Here
1097
        {
1097
        {
1098
            try
1098
            try
1099
            {
1099
            {
1100
                long nOpenMode;
1100
                sal_Int32 nOpenMode;
1101
                Any a = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OpenMode" )));
1101
                Any a = xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OpenMode" )));
1102
                if ( a >>= nOpenMode )
1102
                if ( a >>= nOpenMode )
1103
                    m_bReadOnly = !( nOpenMode & ElementModes::WRITE );
1103
                    m_bReadOnly = !( nOpenMode & ElementModes::WRITE );

Return to issue 31862