summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/gvfs
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-04 12:55:07 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-05 09:29:24 -0600
commit66f2c35fac22a235a1e491824126f105e6d3869c (patch)
tree0d3d10e637346a26cafda20b789d4ad78836cf9e /ucb/source/ucp/gvfs
parent578bd15399a16b0a32e752e19ae42d989321d731 (diff)
de-macroize XINTERFACE_DECL
Change-Id: Iaa1cf999189f6b62547c208eadc38150400ca0fe Reviewed-on: https://gerrit.libreoffice.org/8454 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'ucb/source/ucp/gvfs')
-rw-r--r--ucb/source/ucp/gvfs/gvfs_content.hxx7
-rw-r--r--ucb/source/ucp/gvfs/gvfs_provider.hxx7
2 files changed, 12 insertions, 2 deletions
diff --git a/ucb/source/ucp/gvfs/gvfs_content.hxx b/ucb/source/ucp/gvfs/gvfs_content.hxx
index 495bbfa3c1de..628400957835 100644
--- a/ucb/source/ucp/gvfs/gvfs_content.hxx
+++ b/ucb/source/ucp/gvfs/gvfs_content.hxx
@@ -200,7 +200,12 @@ public:
virtual ~Content();
// XInterface
- XINTERFACE_DECL()
+ virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType )
+ throw( css::uno::RuntimeException, std::exception );
+ virtual void SAL_CALL acquire()
+ throw();
+ virtual void SAL_CALL release()
+ throw();
// XTypeProvider
XTYPEPROVIDER_DECL()
diff --git a/ucb/source/ucp/gvfs/gvfs_provider.hxx b/ucb/source/ucp/gvfs/gvfs_provider.hxx
index 8ff142c3c916..f2b2c2b2d115 100644
--- a/ucb/source/ucp/gvfs/gvfs_provider.hxx
+++ b/ucb/source/ucp/gvfs/gvfs_provider.hxx
@@ -33,7 +33,12 @@ public:
virtual ~ContentProvider();
// XInterface
- XINTERFACE_DECL()
+ virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType )
+ throw( css::uno::RuntimeException, std::exception );
+ virtual void SAL_CALL acquire()
+ throw();
+ virtual void SAL_CALL release()
+ throw();
// XTypeProvider
XTYPEPROVIDER_DECL()