diff options
author | Stefan Weiberg <stefan.weiberg@germandev.org> | 2014-09-05 15:34:48 +0000 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-09-08 03:02:57 -0500 |
commit | 481cd6368bd1af2b4a51be57bcedfb8fc631bf0e (patch) | |
tree | 5ad82755ca6c11db9d47ac5034b1562c4bfb96ab /uui/source | |
parent | 34a68f0aa92de05123c1e951899c08eed5a55543 (diff) |
Related #82088: removed last css aliases in hxx
* Only unfixed header namespace alias in
ConnectionLog.hxx:
LogLevel = ::com::sun::star::logging::LogLevel
Change-Id: I48c941a4762830f2265c8241f4c1695a43ec891a
Reviewed-on: https://gerrit.libreoffice.org/11333
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'uui/source')
-rw-r--r-- | uui/source/secmacrowarnings.hxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/uui/source/secmacrowarnings.hxx b/uui/source/secmacrowarnings.hxx index cac7ed3152b7..da05fa576654 100644 --- a/uui/source/secmacrowarnings.hxx +++ b/uui/source/secmacrowarnings.hxx @@ -35,16 +35,14 @@ namespace security { #include <com/sun/star/uno/Sequence.hxx> -namespace cssu = com::sun::star::uno; - class MacroWarning : public ModalDialog { private: - cssu::Reference< css::security::XCertificate > mxCert; - cssu::Reference< css::embed::XStorage > mxStore; + css::uno::Reference< css::security::XCertificate > mxCert; + css::uno::Reference< css::embed::XStorage > mxStore; OUString maODFVersion; - const cssu::Sequence< css::security::DocumentSignatureInformation >* mpInfos; + const css::uno::Sequence< css::security::DocumentSignatureInformation >* mpInfos; FixedImage* mpSymbolImg; FixedText* mpDocNameFI; @@ -73,10 +71,10 @@ public: void SetDocumentURL( const OUString& rDocURL ); - void SetStorage( const cssu::Reference < css::embed::XStorage >& rxStore, + void SetStorage( const css::uno::Reference < css::embed::XStorage >& rxStore, const OUString& aODFVersion, - const cssu::Sequence< css::security::DocumentSignatureInformation >& _rInfos ); - void SetCertificate( const cssu::Reference< css::security::XCertificate >& _rxCert ); + const css::uno::Sequence< css::security::DocumentSignatureInformation >& _rInfos ); + void SetCertificate( const css::uno::Reference< css::security::XCertificate >& _rxCert ); }; #endif |