summaryrefslogtreecommitdiff
path: root/include/ucbhelper/resultset.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2024-02-15 10:04:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-02-19 09:09:06 +0100
commit3ba92b5f1eaf7d4447a0943ea260db515ca799dc (patch)
treec9d872596ba8c5d57f6a30761d5ce1052972735a /include/ucbhelper/resultset.hxx
parent5f0021cdd0b84fccaecf23a014622f0aca86430c (diff)
hide more symbols
using the bin/find-can-be-private-symbols.py script to find classes with large numbers of exported symbols that can hidden. before exported = 58104 imported = 30810 unused_exports = 35433 after exported = 55094 imported = 31073 unused_exports = 32423 Change-Id: Idd0a70ee3740afd5ca1a86771e0e2ff8090d102d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163456 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/ucbhelper/resultset.hxx')
-rw-r--r--include/ucbhelper/resultset.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/ucbhelper/resultset.hxx b/include/ucbhelper/resultset.hxx
index 779b5ab1df32..5e9bad0ce499 100644
--- a/include/ucbhelper/resultset.hxx
+++ b/include/ucbhelper/resultset.hxx
@@ -56,7 +56,7 @@ struct ResultSet_Impl;
*
* @see ResultSetDataSupplier
*/
-class UCBHELPER_DLLPUBLIC ResultSet final :
+class ResultSet final :
public cppu::WeakImplHelper<
css::lang::XServiceInfo,
css::lang::XComponent,
@@ -78,7 +78,7 @@ public:
* shall be able to obtain the values.
* @param rDataSupplier is a supplier for the resultset data.
*/
- ResultSet(
+ UCBHELPER_DLLPUBLIC ResultSet(
const css::uno::Reference< css::uno::XComponentContext >& rxContext,
const css::uno::Sequence< css::beans::Property >& rProperties,
const rtl::Reference< ResultSetDataSupplier >& rDataSupplier );
@@ -92,7 +92,7 @@ public:
* @param rxEnv is the environment for interactions, progress propagation,
* ...
*/
- ResultSet(
+ UCBHELPER_DLLPUBLIC ResultSet(
const css::uno::Reference< css::uno::XComponentContext >& rxContext,
const css::uno::Sequence< css::beans::Property >& rProperties,
const rtl::Reference< ResultSetDataSupplier >& rDataSupplier,
@@ -253,13 +253,13 @@ public:
* @param nOld is the old count of rows; must be non-negative.
* @param nnew is the new count of rows; must be non-negative.
*/
- void rowCountChanged( sal_uInt32 nOld, sal_uInt32 nNew );
+ UCBHELPER_DLLPUBLIC void rowCountChanged( sal_uInt32 nOld, sal_uInt32 nNew );
/**
* This method should be called by the data supplier for the result set
* to indicate that there were all rows obtained from the data source.
*/
- void rowCountFinal();
+ UCBHELPER_DLLPUBLIC void rowCountFinal();
/**
* This method returns a sequence containing all properties ( not the
@@ -267,7 +267,7 @@ public:
*
* @return a sequence of properties.
*/
- const css::uno::Sequence< css::beans::Property >&
+ UCBHELPER_DLLPUBLIC const css::uno::Sequence< css::beans::Property >&
getProperties() const;
/**
@@ -276,7 +276,7 @@ public:
*
* @return an environment or an empty reference.
*/
- const css::uno::Reference< css::ucb::XCommandEnvironment >&
+ UCBHELPER_DLLPUBLIC const css::uno::Reference< css::ucb::XCommandEnvironment >&
getEnvironment() const;
};