diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-08 13:07:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-09 08:10:35 +0200 |
commit | 8411b80d46765f1ddd4e37aa634ec963dcf4b04f (patch) | |
tree | f14a715537b3ff3b583e8232eb989d6468c84fbc /sfx2/qa/cppunit | |
parent | 1de7e818a417a412678013c100b4bf73fd8858ac (diff) |
loplugin:constfields in sfx2
and we find that bSplitable in SfxDockingWindow is always true,
ever since
commit 4bd28a2fee0d36c67911019eeb7d934838e27cad
Date: Tue Jan 29 15:27:40 2008 +0000
INTEGRATION: CWS fwk82_SRC680 (1.45.138); FILE MERGED
so we can remove all of the non-splittable code there.
`
Change-Id: Ia7fe607ed02d1a7c69a92bab57e220b19f0e6e87
Reviewed-on: https://gerrit.libreoffice.org/61550
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/qa/cppunit')
-rw-r--r-- | sfx2/qa/cppunit/test_metadatable.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/qa/cppunit/test_metadatable.cxx b/sfx2/qa/cppunit/test_metadatable.cxx index d469859c4cf0..5073f87202b7 100644 --- a/sfx2/qa/cppunit/test_metadatable.cxx +++ b/sfx2/qa/cppunit/test_metadatable.cxx @@ -64,7 +64,7 @@ public: bool const i_isInClip = false) : m_rRegistry(i_rReg) , m_bInClipboard(i_isInClip), m_bInUndo(false), m_bInContent(true) {} - bool m_bInClipboard; + bool const m_bInClipboard; bool m_bInUndo; bool m_bInContent; virtual bool IsInClipboard() const override { return m_bInClipboard; } |