diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:54:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-26 13:55:35 +0200 |
commit | 786447f12ddedce95217fffeedb5d6296ec388d4 (patch) | |
tree | ba6b758847bc8c91dd6736e65e5a0589d97c42be /vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx | |
parent | 7f8500191f24571d70fe6a8b8273102d65fd86e1 (diff) |
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I6c82e5071038990489e85ac27758867205ba476a
Diffstat (limited to 'vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx')
-rw-r--r-- | vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx b/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx index 6872c6698859..6512434b5bb6 100644 --- a/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx +++ b/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx @@ -1906,7 +1906,7 @@ void SalGtkFilePicker::SetFilters() for (std::set<OUString>::const_iterator aIter = aAllFormats.begin(); aIter != aEnd; ++aIter) { if (!sAllFilter.isEmpty()) - sAllFilter += OUString(';'); + sAllFilter += ";"; sAllFilter += *aIter; } sPseudoFilter = getResString(FILE_PICKER_ALLFORMATS); |