diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-08 11:10:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-08 11:10:30 +0100 |
commit | 3b53a4cdb57667b0c7495ad6aef19312edba2d5d (patch) | |
tree | f9f1279f48651ded7b9c18d8e795ef048fa4abdf /extensions | |
parent | 88692a2d244b7e85a20b6b1782873347326cba03 (diff) |
Blind fix for apparently buggy GCC 4.8
cf. <http://ci.libreoffice.org/job/lo_tb_master_linux_dbg/10952/console>
Change-Id: If947e338be0ab17f41f74f8e70e6281f46a7f57c
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/logging/loggerconfig.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/logging/loggerconfig.cxx b/extensions/source/logging/loggerconfig.cxx index 8bb8fdbd1379..1d1938936cd0 100644 --- a/extensions/source/logging/loggerconfig.cxx +++ b/extensions/source/logging/loggerconfig.cxx @@ -123,11 +123,11 @@ namespace logging Variable const aVariables[] = { - {"$(loggername)", sLoggerName}, - {"$(date)", sDate}, - {"$(time)", sTime}, - {"$(datetime)", sDateTime}, - {"$(pid)", aPID} + {OUStringLiteral("$(loggername)"), sLoggerName}, + {OUStringLiteral("$(date)"), sDate}, + {OUStringLiteral("$(time)"), sTime}, + {OUStringLiteral("$(datetime)"), sDateTime}, + {OUStringLiteral("$(pid)"), aPID} }; for (Variable const & aVariable : aVariables) |