summaryrefslogtreecommitdiff
path: root/reportdesign/inc
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 /reportdesign/inc
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 'reportdesign/inc')
-rw-r--r--reportdesign/inc/ReportDefinition.hxx4
-rw-r--r--reportdesign/inc/UndoEnv.hxx12
2 files changed, 8 insertions, 8 deletions
diff --git a/reportdesign/inc/ReportDefinition.hxx b/reportdesign/inc/ReportDefinition.hxx
index f58a3add90fe..b88fe46be475 100644
--- a/reportdesign/inc/ReportDefinition.hxx
+++ b/reportdesign/inc/ReportDefinition.hxx
@@ -82,7 +82,7 @@ namespace reportdesign
* \ingroup reportdesign_api
*
*/
- class REPORTDESIGN_DLLPUBLIC OReportDefinition final :public ::cppu::BaseMutex
+ class OReportDefinition final :public ::cppu::BaseMutex
,public ReportDefinitionBase
,public ReportDefinitionPropertySet
,public ::comphelper::IEmbeddedHelper
@@ -189,7 +189,7 @@ namespace reportdesign
public:
//TTTT Needed? Or same as above?
static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId();
- static std::shared_ptr<rptui::OReportModel> getSdrModel(const css::uno::Reference< css::report::XReportDefinition >& _xReportDefinition);
+ REPORTDESIGN_DLLPUBLIC static std::shared_ptr<rptui::OReportModel> getSdrModel(const css::uno::Reference< css::report::XReportDefinition >& _xReportDefinition);
private:
DECLARE_XINTERFACE( )
diff --git a/reportdesign/inc/UndoEnv.hxx b/reportdesign/inc/UndoEnv.hxx
index af893f68d671..aca48b7c2693 100644
--- a/reportdesign/inc/UndoEnv.hxx
+++ b/reportdesign/inc/UndoEnv.hxx
@@ -37,7 +37,7 @@ namespace rptui
class OXUndoEnvironmentImpl;
- class REPORTDESIGN_DLLPUBLIC OXUndoEnvironment final
+ class OXUndoEnvironment final
: public ::cppu::WeakImplHelper< css::beans::XPropertyChangeListener
, css::container::XContainerListener
, css::util::XModifyListener
@@ -51,7 +51,7 @@ namespace rptui
virtual ~OXUndoEnvironment() override;
- void SetUndoMode(bool _bUndo);
+ REPORTDESIGN_DLLPUBLIC void SetUndoMode(bool _bUndo);
public:
OXUndoEnvironment(OReportModel& _rModel);
@@ -89,8 +89,8 @@ namespace rptui
}
};
- void Lock();
- void UnLock();
+ REPORTDESIGN_DLLPUBLIC void Lock();
+ REPORTDESIGN_DLLPUBLIC void UnLock();
bool IsLocked() const;
// returns sal_True is we are in UNDO
@@ -100,8 +100,8 @@ namespace rptui
struct Accessor { friend class OReportModel; private: Accessor() { } };
void Clear(const Accessor& _r);
- void AddElement(const css::uno::Reference< css::uno::XInterface>& Element);
- void RemoveElement(const css::uno::Reference< css::uno::XInterface>& Element);
+ REPORTDESIGN_DLLPUBLIC void AddElement(const css::uno::Reference< css::uno::XInterface>& Element);
+ REPORTDESIGN_DLLPUBLIC void RemoveElement(const css::uno::Reference< css::uno::XInterface>& Element);
void AddSection( const css::uno::Reference< css::report::XSection>& _xSection);
void RemoveSection( const css::uno::Reference< css::report::XSection>& _xSection );