diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-30 00:32:52 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-30 00:56:42 +0100 |
commit | 049ce78144650d92eb6bd73292868f73d37c9010 (patch) | |
tree | f2296358bc0f211620c3b0867568b2c51af5f45f /uui/source/sslwarndlg.hxx | |
parent | cd41b59eb295c89d3849b9a2089bee8b897ddc06 (diff) |
remove local css definitions
follow-up of 66a175834c39ccde9475eac3adb72a843110d01f
Change-Id: I1c495041ccc4db4dd9554d49b6324e989fa46c60
Diffstat (limited to 'uui/source/sslwarndlg.hxx')
-rw-r--r-- | uui/source/sslwarndlg.hxx | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/uui/source/sslwarndlg.hxx b/uui/source/sslwarndlg.hxx index 9cfa924ae4b4..43363ca1f863 100644 --- a/uui/source/sslwarndlg.hxx +++ b/uui/source/sslwarndlg.hxx @@ -28,10 +28,6 @@ #include <com/sun/star/xml/crypto/XSecurityEnvironment.hpp> #include <com/sun/star/uno/XComponentContext.hpp> -namespace cssu = com::sun::star::uno; -namespace dcss = ::com::sun::star; - - using namespace com::sun::star; //===================================================================== @@ -48,8 +44,8 @@ private: FixedImage m_aWarnImage; - const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& m_xContext; - const cssu::Reference< dcss::security::XCertificate >& m_rXCert; + const css::uno::Reference< css::uno::XComponentContext >& m_xContext; + const css::uno::Reference< css::security::XCertificate >& m_rXCert; Window* m_pParent; DECL_LINK(OKHdl_Impl, void *); @@ -57,11 +53,11 @@ private: public: SSLWarnDialog( Window* pParent, - const cssu::Reference< dcss::security::XCertificate >& rXCert, - const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& xContext, + const css::uno::Reference< css::security::XCertificate >& rXCert, + const css::uno::Reference< css::uno::XComponentContext >& xContext, ResMgr * pResMgr ); - cssu::Reference< dcss::security::XCertificate > getCert() { return m_rXCert; }; + css::uno::Reference< css::security::XCertificate > getCert() { return m_rXCert; }; Window* getParent() { return m_pParent; }; |