summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-13 22:24:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-13 22:26:22 +0200
commita53808c0ed577468393aced90963af6496706959 (patch)
tree3f858f7115bda93d4ed90463c271f9597599fd20 /chart2
parentccfbc9d3ac83fa238d6240b5365dc7572c64d241 (diff)
loplugin:dllprivate
Change-Id: I1fe70a39c50aba8b84c117653185fc37dbbfeab0
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/inc/ConfigColorScheme.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/inc/ConfigColorScheme.hxx b/chart2/source/inc/ConfigColorScheme.hxx
index 9be8091ac314..894944b51a1a 100644
--- a/chart2/source/inc/ConfigColorScheme.hxx
+++ b/chart2/source/inc/ConfigColorScheme.hxx
@@ -46,7 +46,7 @@ class ConfigColorScheme :
{
public:
explicit ConfigColorScheme( const css::uno::Reference< css::uno::XComponentContext > & xContext );
- SAL_DLLPRIVATE virtual ~ConfigColorScheme() override;
+ virtual ~ConfigColorScheme() override;
/// declare XServiceInfo methods
virtual OUString SAL_CALL getImplementationName()
@@ -60,15 +60,15 @@ public:
static css::uno::Sequence< OUString > getSupportedServiceNames_Static();
// ____ ConfigItemListener ____
- SAL_DLLPRIVATE void notify( const OUString & rPropertyName );
+ void notify( const OUString & rPropertyName );
protected:
// ____ XColorScheme ____
- SAL_DLLPRIVATE virtual ::sal_Int32 SAL_CALL getColorByIndex( ::sal_Int32 nIndex )
+ virtual ::sal_Int32 SAL_CALL getColorByIndex( ::sal_Int32 nIndex )
throw (css::uno::RuntimeException, std::exception) override;
private:
- SAL_DLLPRIVATE void retrieveConfigColors();
+ void retrieveConfigColors();
// member variables
css::uno::Reference< css::uno::XComponentContext > m_xContext;