diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-07-04 12:09:36 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-07-04 12:10:32 +0200 |
commit | ce19822db8205025e2c38e1cbe87dcbe52340598 (patch) | |
tree | 2b786f4f0b2f58ff7e1aff6baa5d94679ef2ff8b | |
parent | 37a5afbe98b8dad909f3a6dc7e815100835631ec (diff) |
don't use SC_DLLPUBLIC for class + method
Change-Id: Iec2cbcc0cfdfccb8d143b7a83d69f7fc186c3f7e
-rw-r--r-- | sc/inc/conditio.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx index eaeccf5a8f14..1b959339a2ac 100644 --- a/sc/inc/conditio.hxx +++ b/sc/inc/conditio.hxx @@ -344,10 +344,10 @@ public: typedef ConditionalFormatContainer::iterator iterator; typedef ConditionalFormatContainer::const_iterator const_iterator; - SC_DLLPUBLIC iterator begin(); - SC_DLLPUBLIC const_iterator begin() const; - SC_DLLPUBLIC iterator end(); - SC_DLLPUBLIC const_iterator end() const; + iterator begin(); + const_iterator begin() const; + iterator end(); + const_iterator end() const; size_t size() const; |