basctl/source/basicide/scriptdocument.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 78417304160a72d7ba10d14e21c31faa0bf4e966 Author: Petr Mladek <[email protected]> Date: Thu Oct 18 11:39:10 2012 +0200 more explicit char* => OUString conversion in basctl it will hopefully fix build on the Windows tinderbox diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx index d61de8f..0e1fa08 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; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
