summaryrefslogtreecommitdiff
path: root/include/svtools/javacontext.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 09:07:12 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 10:48:50 +0200
commitc06e2fcc2c03c4b6353bd9a1e282c36de872d777 (patch)
tree69cdc7e4bf9d658b108d2a71a8d9ed41c518ed0d /include/svtools/javacontext.hxx
parenta1ff0745cc4f78777e8dba1e7bb52d18386d7394 (diff)
com::sun::star->css in include/sot to include/typelib
Change-Id: I9cd92b53370a6b6018d2f7c648890f9c014a27de
Diffstat (limited to 'include/svtools/javacontext.hxx')
-rw-r--r--include/svtools/javacontext.hxx26
1 files changed, 11 insertions, 15 deletions
diff --git a/include/svtools/javacontext.hxx b/include/svtools/javacontext.hxx
index 818806a52e06..dc16ac764c4f 100644
--- a/include/svtools/javacontext.hxx
+++ b/include/svtools/javacontext.hxx
@@ -34,7 +34,7 @@ namespace svt
//generated class. This conflicts with other libraries if they use the same inline
//class.
class SVT_DLLPUBLIC JavaContext :
- public com::sun::star::uno::XCurrentContext
+ public css::uno::XCurrentContext
{
public:
@@ -44,35 +44,31 @@ namespace svt
particular Request then the message box is shown. Afterwards
nothing happens.
*/
- JavaContext( const com::sun::star::uno::Reference<
- com::sun::star::uno::XCurrentContext> & ctx,
+ JavaContext( const css::uno::Reference< css::uno::XCurrentContext> & ctx,
bool bReportErrorOnce = true );
virtual ~JavaContext();
// XInterface
- virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(
- const ::com::sun::star::uno::Type& aType )
- throw (::com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL queryInterface(
+ const css::uno::Type& aType )
+ throw (css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL acquire() throw () override;
virtual void SAL_CALL release() throw () override;
// XCurrentContext
- virtual com::sun::star::uno::Any SAL_CALL getValueByName( const OUString& Name )
- throw (com::sun::star::uno::RuntimeException, std::exception) override;
+ virtual css::uno::Any SAL_CALL getValueByName( const OUString& Name )
+ throw (css::uno::RuntimeException, std::exception) override;
private:
JavaContext(JavaContext&) = delete;
JavaContext& operator = (JavaContext&) = delete;
- oslInterlockedCount m_aRefCount;
-
- com::sun::star::uno::Reference<
- com::sun::star::uno::XCurrentContext > m_xNextContext;
- com::sun::star::uno::Reference<
- com::sun::star::task::XInteractionHandler> m_xHandler;
- bool m_bShowErrorsOnce;
+ oslInterlockedCount m_aRefCount;
+ css::uno::Reference< css::uno::XCurrentContext > m_xNextContext;
+ css::uno::Reference< css::task::XInteractionHandler> m_xHandler;
+ bool m_bShowErrorsOnce;
};
}