diff options
author | Petr Mladek <pmladek@suse.cz> | 2012-10-18 11:39:10 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2012-10-18 11:39:10 +0200 |
commit | 78417304160a72d7ba10d14e21c31faa0bf4e966 (patch) | |
tree | 434d94b251ee17995c00998b38d3991d4fccd012 /basctl | |
parent | 1c192dc0fcfb5a3f63042ed7daf7deaf48d56668 (diff) |
more explicit char* => OUString conversion in basctl
it will hopefully fix build on the Windows tinderbox
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/scriptdocument.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index d61de8fde556..0e1fa088ed43 100644 --- a/basctl/source/basicide/scriptdocument.cxx +++ b/basctl/source/basicide/scriptdocument.cxx @@ -1293,7 +1293,7 @@ namespace basctl { OUString aObjectName; - OUString aBaseName = _eType == E_SCRIPTS ? "Module" : "Dialog"; + OUString aBaseName = _eType == E_SCRIPTS ? OUString("Module") : OUString("Dialog"); Sequence< OUString > aUsedNames( getObjectNames( _eType, _rLibName ) ); ::std::set< OUString > aUsedNamesCheck; |