summaryrefslogtreecommitdiff
path: root/framework/inc/uielement/langselectionmenucontroller.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-13 16:59:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-14 06:37:16 +0000
commitd191d1f9b684c6229f3651361c92ff39ffb350f1 (patch)
treee670ba0105d974b3a68c17b42366eec1d35ebae4 /framework/inc/uielement/langselectionmenucontroller.hxx
parentba974ccc8c49766542ddd727c95ecc5db1cff198 (diff)
com::sun::star->css in framework
Change-Id: If5a77db83fcbef5ed436f2043ddeb7c515a840dc Reviewed-on: https://gerrit.libreoffice.org/19356 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'framework/inc/uielement/langselectionmenucontroller.hxx')
-rw-r--r--framework/inc/uielement/langselectionmenucontroller.hxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/framework/inc/uielement/langselectionmenucontroller.hxx b/framework/inc/uielement/langselectionmenucontroller.hxx
index 8a73bd6a5dee..94f9c6ce80eb 100644
--- a/framework/inc/uielement/langselectionmenucontroller.hxx
+++ b/framework/inc/uielement/langselectionmenucontroller.hxx
@@ -47,23 +47,23 @@ namespace framework
using svt::PopupMenuControllerBase::disposing;
public:
- LanguageSelectionMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
+ LanguageSelectionMenuController( const css::uno::Reference< css::uno::XComponentContext >& xContext );
virtual ~LanguageSelectionMenuController();
// XServiceInfo
DECLARE_XSERVICEINFO
// XPopupMenuController
- virtual void SAL_CALL updatePopupMenu() throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL updatePopupMenu() throw (css::uno::RuntimeException, std::exception) override;
// XInitialization
- virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::Exception, css::uno::RuntimeException, std::exception) override;
// XStatusListener
- virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& Event ) throw ( css::uno::RuntimeException, std::exception ) override;
// XEventListener
- virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) throw ( css::uno::RuntimeException, std::exception ) override;
private:
virtual void impl_setPopupMenu() override;
@@ -74,22 +74,22 @@ namespace framework
MODE_SetLanguageAllTextMenu
};
- bool m_bShowMenu;
- OUString m_aLangStatusCommandURL;
- ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xLanguageDispatch;
- OUString m_aMenuCommandURL_Lang;
- ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xMenuDispatch_Lang;
- OUString m_aMenuCommandURL_Font;
- ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xMenuDispatch_Font;
- OUString m_aMenuCommandURL_CharDlgForParagraph;
- ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xMenuDispatch_CharDlgForParagraph;
- OUString m_aCurLang;
- SvtScriptType m_nScriptType;
- OUString m_aKeyboardLang;
- OUString m_aGuessedTextLang;
- LanguageGuessingHelper m_aLangGuessHelper;
-
- void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu, const Mode rMode );
+ bool m_bShowMenu;
+ OUString m_aLangStatusCommandURL;
+ css::uno::Reference< css::frame::XDispatch > m_xLanguageDispatch;
+ OUString m_aMenuCommandURL_Lang;
+ css::uno::Reference< css::frame::XDispatch > m_xMenuDispatch_Lang;
+ OUString m_aMenuCommandURL_Font;
+ css::uno::Reference< css::frame::XDispatch > m_xMenuDispatch_Font;
+ OUString m_aMenuCommandURL_CharDlgForParagraph;
+ css::uno::Reference< css::frame::XDispatch > m_xMenuDispatch_CharDlgForParagraph;
+ OUString m_aCurLang;
+ SvtScriptType m_nScriptType;
+ OUString m_aKeyboardLang;
+ OUString m_aGuessedTextLang;
+ LanguageGuessingHelper m_aLangGuessHelper;
+
+ void fillPopupMenu( css::uno::Reference< css::awt::XPopupMenu >& rPopupMenu, const Mode rMode );
};
}