a5bdf3c606 "Make O[U]StringLiteral ctor explicit"
made both the OStringLiteral and the OUStringLiteral ctor explicit, and
87707670c9 "Make OUStringLiteral more useful" made
(only) the OUStringLiteral ctor non-explicit again. There appears to be no good
reason to keep the OStringLiteral ctor explict, and the current sitation lead to
OUStringLiteral v = u"...";
being valid while
OStringLiteral v = "...";
was not (and needed to be written as
OStringLieral v("...");
instead).
Change-Id: Ide26917efabb6eca31c19f64652ee87460e6dd1a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108056
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>