summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-11-03 13:58:52 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-11-03 14:48:49 +0000
commit6c52a8b916e52c9ab33461e931a4e75b3dae04f7 (patch)
treef1bf31bfeca2012db13cdf2ba62ad8bf09f2afdf /sw/inc
parentfa430e6b4e6f5d096bdf59db26e5d7393ca2297b (diff)
drop SW_DLLPUBLICs for unit-test only exposure
seeing as have a uwriter target for the non-exposed symbols case. As a motivating side-effect stops crashing on exit on an optimized build with my x86_64 fedora 20 gcc 4.8.3 build Change-Id: If0240ee02d4899e488b12d2d8d5f9b6bf7cca37d
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/ToxLinkProcessor.hxx2
-rw-r--r--sw/inc/ToxTabStopTokenHandler.hxx4
-rw-r--r--sw/inc/ToxTextGenerator.hxx2
-rw-r--r--sw/inc/ToxWhitespaceStripper.hxx2
4 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/ToxLinkProcessor.hxx b/sw/inc/ToxLinkProcessor.hxx
index dcf10022575f..2e439c05f2d8 100644
--- a/sw/inc/ToxLinkProcessor.hxx
+++ b/sw/inc/ToxLinkProcessor.hxx
@@ -24,7 +24,7 @@ namespace sw {
/** A helper class for ToxTextGenerator.
* It collects information about encountered link tokens and allows access in a processed form.
*/
-class SW_DLLPUBLIC ToxLinkProcessor {
+class ToxLinkProcessor {
public:
ToxLinkProcessor() {}
virtual ~ToxLinkProcessor() {}
diff --git a/sw/inc/ToxTabStopTokenHandler.hxx b/sw/inc/ToxTabStopTokenHandler.hxx
index 8830de9b942a..a0d9e421c190 100644
--- a/sw/inc/ToxTabStopTokenHandler.hxx
+++ b/sw/inc/ToxTabStopTokenHandler.hxx
@@ -28,7 +28,7 @@ namespace sw {
* @internal
* This is an interface class. It allows to mock the class in unit tests
*/
-class SW_DLLPUBLIC ToxTabStopTokenHandler
+class ToxTabStopTokenHandler
{
public:
virtual ~ToxTabStopTokenHandler() {}
@@ -50,7 +50,7 @@ public:
};
/** The default implementation of ToxTabStopTokenHandler */
-class SW_DLLPUBLIC DefaultToxTabStopTokenHandler : public ToxTabStopTokenHandler
+class DefaultToxTabStopTokenHandler : public ToxTabStopTokenHandler
{
public:
diff --git a/sw/inc/ToxTextGenerator.hxx b/sw/inc/ToxTextGenerator.hxx
index a9c9cadd279b..45af1314a6ee 100644
--- a/sw/inc/ToxTextGenerator.hxx
+++ b/sw/inc/ToxTextGenerator.hxx
@@ -54,7 +54,7 @@ class ToxTabStopTokenHandler;
*
* You can control its behavior by calling @link SetTabstopPolicy() and specifying the desired behavior.
*/
-class SW_DLLPUBLIC ToxTextGenerator
+class ToxTextGenerator
{
public:
ToxTextGenerator(const SwForm& toxForm, boost::shared_ptr<ToxTabStopTokenHandler> tabStopHandler);
diff --git a/sw/inc/ToxWhitespaceStripper.hxx b/sw/inc/ToxWhitespaceStripper.hxx
index bc8e8699c032..dc3e741bf95a 100644
--- a/sw/inc/ToxWhitespaceStripper.hxx
+++ b/sw/inc/ToxWhitespaceStripper.hxx
@@ -30,7 +30,7 @@ namespace sw {
*
* @note One leading whitespace is preserved.
*/
-class SW_DLLPUBLIC ToxWhitespaceStripper
+class ToxWhitespaceStripper
{
public:
ToxWhitespaceStripper(const OUString&);