summaryrefslogtreecommitdiff
path: root/uui/source/unknownauthdlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'uui/source/unknownauthdlg.hxx')
-rw-r--r--uui/source/unknownauthdlg.hxx14
1 files changed, 5 insertions, 9 deletions
diff --git a/uui/source/unknownauthdlg.hxx b/uui/source/unknownauthdlg.hxx
index ea982fc52b99..46a08e78ac48 100644
--- a/uui/source/unknownauthdlg.hxx
+++ b/uui/source/unknownauthdlg.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;
//=====================================================================
@@ -50,8 +46,8 @@ private:
FixedText m_aLabel1;
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 *);
@@ -59,11 +55,11 @@ private:
public:
UnknownAuthDialog( 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; };