summaryrefslogtreecommitdiff
path: root/sw/inc/swdll.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-10-06 09:28:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2011-10-06 09:28:20 +0200
commit06fdd1585d59b2580e8e35bba8a3295bbda28c6e (patch)
tree1c08083e2721054b94841a1f69fb84d2454aa515 /sw/inc/swdll.hxx
parent8529da08517b41bd9317714e3216bb6d487b24ee (diff)
Ensure msword lib has not yet been unloaded when aReaderWriter pReaders are destroyed.
...as some may use code exported from msword lib. The newly introduced sw::Filters class can still be improved, bundling what is currently exported through various channels from fltini.cxx. Also, the code is still not thread safe.
Diffstat (limited to 'sw/inc/swdll.hxx')
-rw-r--r--sw/inc/swdll.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/inc/swdll.hxx b/sw/inc/swdll.hxx
index 868682e3b84d..154f67062b8d 100644
--- a/sw/inc/swdll.hxx
+++ b/sw/inc/swdll.hxx
@@ -31,6 +31,8 @@
#include <sfx2/sfxdefs.hxx>
#include <sfx2/module.hxx>
+namespace sw { class Filters; }
+
/**
* This class is a wrapper for a Load-On-Demand-DLL. One instance
* per SfxApplication will be created for the runtime of
@@ -39,6 +41,8 @@
namespace SwGlobals
{
void ensure();
+
+ sw::Filters & getFilters();
}
#endif