diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-04 08:22:25 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-04 08:22:25 +0200 |
commit | f904bd567facfe29c81f99100f924e3cd1385312 (patch) | |
tree | 03c8e0c11344f6176e5574f7d9be76dbf603c81b /basctl/source | |
parent | 41051ebbc416aafafec79c6795a8f8587c58d0e5 (diff) |
loplugin:stringconcat
Change-Id: I4156d1d57d0afaa2fc7ef93370fa824b38d273e4
Diffstat (limited to 'basctl/source')
-rw-r--r-- | basctl/source/basicide/moduldl2.cxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index d7e9e56da013..1e22ab0445d1 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -747,18 +747,18 @@ void LibPage::InsertLib() // filter OUString aTitle(IDEResId(RID_STR_BASIC).toString()); OUString aFilter; - aFilter = OUString("*.sbl;*.xlc;*.xlb") // library files - + ";*.sdw;*.sxw;*.odt" // text - + ";*.vor;*.stw;*.ott" // text template - + ";*.sgl;*.sxg;*.odm" // master document - + ";*.oth" // html document template - + ";*.sdc;*.sxc;*.ods" // spreadsheet - + ";*.stc;*.ots" // spreadsheet template - + ";*.sda;*.sxd;*.odg" // drawing - + ";*.std;*.otg" // drawing template - + ";*.sdd;*.sxi;*.odp" // presentation - + ";*.sti;*.otp" // presentation template - + ";*.sxm;*.odf" ; // formula + aFilter = "*.sbl;*.xlc;*.xlb" // library files + ";*.sdw;*.sxw;*.odt" // text + ";*.vor;*.stw;*.ott" // text template + ";*.sgl;*.sxg;*.odm" // master document + ";*.oth" // html document template + ";*.sdc;*.sxc;*.ods" // spreadsheet + ";*.stc;*.ots" // spreadsheet template + ";*.sda;*.sxd;*.odg" // drawing + ";*.std;*.otg" // drawing template + ";*.sdd;*.sxi;*.odp" // presentation + ";*.sti;*.otp" // presentation template + ";*.sxm;*.odf"; // formula xFP->appendFilter( aTitle, aFilter ); // set display directory and filter |