diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-22 15:38:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-22 15:38:35 +0200 |
commit | 84db33a4569c67c0164b85bd218246e1741f6815 (patch) | |
tree | c69a54c5f68e3f6d170a8f7c91617e476ed42ab7 /vcl/source/edit | |
parent | 8fa439aa710bdd21e61910c02bfb9d8a8117eef4 (diff) |
loplugin:commaoperator in vcl/
Change-Id: Ia5bbce27d9e9526122ce1e27389c7845e6709f27
Diffstat (limited to 'vcl/source/edit')
-rw-r--r-- | vcl/source/edit/textdoc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/edit/textdoc.cxx b/vcl/source/edit/textdoc.cxx index edbfbad5bdb4..84721c8061bd 100644 --- a/vcl/source/edit/textdoc.cxx +++ b/vcl/source/edit/textdoc.cxx @@ -30,7 +30,7 @@ static bool CompareStart( const std::unique_ptr<TextCharAttrib>& pFirst, const s TextCharAttrib::TextCharAttrib( const TextAttrib& rAttr, sal_Int32 nStart, sal_Int32 nEnd ) { mpAttr = rAttr.Clone(); - mnStart = nStart, + mnStart = nStart; mnEnd = nEnd; } |