summaryrefslogtreecommitdiff
path: root/sw/inc/swmodule.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-03-16 11:58:39 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-03-16 11:58:39 +0100
commit903a5855e2ccbaa4f828a6359ce31340ea56eade (patch)
treeee196f9dcde075946790b832f26492181394615b /sw/inc/swmodule.hxx
parentab10f03ec4dc7d5d7659fb62c59972c80221f733 (diff)
No need for extra heap allocation
Change-Id: Ibc5424873f6cd4e5e4d9ee37823845b14f17c7fb
Diffstat (limited to 'sw/inc/swmodule.hxx')
-rw-r--r--sw/inc/swmodule.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/swmodule.hxx b/sw/inc/swmodule.hxx
index b124bba088db..a05d90b7c09e 100644
--- a/sw/inc/swmodule.hxx
+++ b/sw/inc/swmodule.hxx
@@ -96,7 +96,7 @@ class SW_DLLPUBLIC SwModule: public SfxModule, public SfxListener, public utl::C
SwView* m_pView;
// List of all Redline-authors.
- std::vector<OUString>* m_pAuthorNames;
+ std::vector<OUString> m_pAuthorNames;
// DictionaryList listener to trigger spellchecking or hyphenation
css::uno::Reference< css::linguistic2::XLinguServiceEventListener > m_xLinguServiceEventListener;