diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-03 17:29:08 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-06 22:12:50 +0200 |
commit | 4fb4e733f31aebf9875135507a8fa9942ec733c8 (patch) | |
tree | 924fcc3baa907d7434da7c2ba80d33815256e627 /sw | |
parent | 33a9039df8819b69b2ed9b08d408ac281a61359a (diff) |
Constify OUString
Change-Id: I610fbdc860e04ae486b428432e8fb4dd62464557
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/envelp/envfmt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/envelp/envfmt.cxx b/sw/source/ui/envelp/envfmt.cxx index e7bd3179234e..82f94802a6d6 100644 --- a/sw/source/ui/envelp/envfmt.cxx +++ b/sw/source/ui/envelp/envfmt.cxx @@ -180,7 +180,7 @@ SwEnvFmtPage::SwEnvFmtPage(Window* pParent, const SfxItemSet& rSet) { if (i != PAPER_USER) { - OUString aPaperName = SvxPaperInfo::GetName((Paper) i); + const OUString aPaperName = SvxPaperInfo::GetName((Paper) i); if (aPaperName.isEmpty()) continue; |