diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 22:24:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-13 22:26:22 +0200 |
commit | a53808c0ed577468393aced90963af6496706959 (patch) | |
tree | 3f858f7115bda93d4ed90463c271f9597599fd20 /basic | |
parent | ccfbc9d3ac83fa238d6240b5365dc7572c64d241 (diff) |
loplugin:dllprivate
Change-Id: I1fe70a39c50aba8b84c117653185fc37dbbfeab0
Diffstat (limited to 'basic')
-rw-r--r-- | basic/inc/sbprop.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/basic/inc/sbprop.hxx b/basic/inc/sbprop.hxx index 236a34e671f9..f1f7352e9c70 100644 --- a/basic/inc/sbprop.hxx +++ b/basic/inc/sbprop.hxx @@ -22,17 +22,16 @@ #include <basic/sbxprop.hxx> #include <basic/sbdef.hxx> -#include <basic/basicdllapi.h> class SbModule; -class BASIC_DLLPUBLIC SbProperty : public SbxProperty +class SbProperty : public SbxProperty { friend class SbiFactory; friend class SbModule; friend class SbProcedureProperty; SbModule* pMod; - BASIC_DLLPRIVATE SbProperty( const OUString&, SbxDataType, SbModule* ); + SbProperty( const OUString&, SbxDataType, SbModule* ); virtual ~SbProperty() override; public: SBX_DECL_PERSIST_NODATA(SBXID_BASICPROP,1); @@ -41,7 +40,7 @@ public: typedef tools::SvRef<SbProperty> SbPropertyRef; -class BASIC_DLLPUBLIC SbProcedureProperty : public SbxProperty +class SbProcedureProperty : public SbxProperty { bool mbSet; // Flag for set command |