diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-05 20:24:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-05 20:24:04 +0000 |
commit | 384a8a4946284d23c5a4f0e347f55d6381d1157c (patch) | |
tree | 4e5c7caad6764b7615a0c9b86bb3c3cff57e5d0b /svx/source/form | |
parent | c20a2234c5cb9cb89611de8a8a34e9d1e7c7a972 (diff) |
push this windows build along a bit further
Change-Id: Id22ba872865bd8136c65c73152097805e696a695
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/fmshimp.cxx | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/svx/source/form/fmshimp.cxx b/svx/source/form/fmshimp.cxx index e76c4f11bfce..8eb02c052b3b 100644 --- a/svx/source/form/fmshimp.cxx +++ b/svx/source/form/fmshimp.cxx @@ -263,7 +263,6 @@ using namespace ::com::sun::star::form::binding; using namespace ::com::sun::star::form::runtime; using namespace ::com::sun::star::awt; using namespace ::com::sun::star::view; -using namespace ::com::sun::star::lang; using namespace ::com::sun::star::util; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::script; @@ -760,7 +759,7 @@ Sequence< sal_Int8 > SAL_CALL FmXFormShell::getImplementationId() throw(RuntimeE } // EventListener -void SAL_CALL FmXFormShell::disposing(const EventObject& e) throw( RuntimeException, std::exception ) +void SAL_CALL FmXFormShell::disposing(const lang::EventObject& e) throw( RuntimeException, std::exception ) { if (m_xActiveController == e.Source) @@ -863,7 +862,7 @@ void FmXFormShell::invalidateFeatures( const ::std::vector< sal_Int32 >& _rFeatu } -void SAL_CALL FmXFormShell::formActivated(const EventObject& rEvent) throw( RuntimeException, std::exception ) +void SAL_CALL FmXFormShell::formActivated(const lang::EventObject& rEvent) throw( RuntimeException, std::exception ) { if ( impl_checkDisposed() ) return; @@ -874,7 +873,7 @@ void SAL_CALL FmXFormShell::formActivated(const EventObject& rEvent) throw( Runt } -void SAL_CALL FmXFormShell::formDeactivated(const EventObject& rEvent) throw( RuntimeException, std::exception ) +void SAL_CALL FmXFormShell::formDeactivated(const lang::EventObject& rEvent) throw( RuntimeException, std::exception ) { if ( impl_checkDisposed() ) return; @@ -1145,14 +1144,14 @@ bool FmXFormShell::executeControlConversionSlot( const Reference< XFormComponent return false; Reference< XControlModel> xOldModel( pFormObject->GetUnoControlModel() ); - Reference< XServiceInfo> xModelInfo(xOldModel, UNO_QUERY); + Reference< lang::XServiceInfo> xModelInfo(xOldModel, UNO_QUERY); // Properties uebertragen Reference< XPropertySet> xOldSet(xOldModel, UNO_QUERY); Reference< XPropertySet> xNewSet(xNewModel, UNO_QUERY); - Locale aNewLanguage = Application::GetSettings().GetUILanguageTag().getLocale(); + lang::Locale aNewLanguage = Application::GetSettings().GetUILanguageTag().getLocale(); TransferFormComponentProperties(xOldSet, xNewSet, aNewLanguage); Sequence< ::com::sun::star::script::ScriptEventDescriptor> aOldScripts; @@ -1308,7 +1307,7 @@ bool FmXFormShell::canConvertCurrentSelectionToControl( sal_Int16 nConversionSlo return false; InterfaceBag::const_iterator aCheck = m_aCurrentSelection.begin(); - Reference< XServiceInfo > xElementInfo( *aCheck, UNO_QUERY ); + Reference< lang::XServiceInfo > xElementInfo( *aCheck, UNO_QUERY ); if ( !xElementInfo.is() ) // no service info -> cannot determine this return false; @@ -2675,7 +2674,7 @@ void FmXFormShell::impl_RemoveElement_nothrow(const Reference< XInterface>& Elem } -void FmXFormShell::selectionChanged(const EventObject& rEvent) throw(::com::sun::star::uno::RuntimeException, std::exception) +void FmXFormShell::selectionChanged(const lang::EventObject& rEvent) throw(::com::sun::star::uno::RuntimeException, std::exception) { if ( impl_checkDisposed() ) return; @@ -3354,7 +3353,7 @@ void FmXFormShell::CreateExternalView() sColumnType = FM_COL_TEXTFIELD; // we know at least two different controls which are TextFields : the basic edit field and the formatted // field. we distinguish them by their service name - Reference< XServiceInfo> xInfo(xCurrentModelSet, UNO_QUERY); + Reference< lang::XServiceInfo> xInfo(xCurrentModelSet, UNO_QUERY); if (xInfo.is()) { sal_Int16 nObjectType = getControlTypeByObject(xInfo); |