summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-31 13:24:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-02-01 07:57:16 +0000
commitdce867e8c4863c969eea3515a988630b74708a43 (patch)
tree340cb8408241fe34bf1c76f54b9ca41ca95a72ab /forms
parent27832947f0d9406c1757182ffa57262f3f03af4b (diff)
loplugin:stringconstant handle calls to constructors with one arg
Change-Id: Ide9148a908bef46ba14640dfa6f556beaf6e3f60 Reviewed-on: https://gerrit.libreoffice.org/33772 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/GroupManager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx
index d3281221615d..3444686670cd 100644
--- a/forms/source/component/GroupManager.cxx
+++ b/forms/source/component/GroupManager.cxx
@@ -193,7 +193,7 @@ Sequence< Reference<XControlModel> > OGroup::GetControlModels() const
}
OGroupManager::OGroupManager(const Reference< XContainer >& _rxContainer)
- :m_pCompGroup( new OGroup( OUString("AllComponentGroup") ) )
+ :m_pCompGroup( new OGroup( "AllComponentGroup" ) )
,m_xContainer(_rxContainer)
{
osl_atomic_increment(&m_refCount);