From b7dfa4d6625d066f5507420089434cb7ac29c968 Mon Sep 17 00:00:00 2001 From: Rosen Date: Tue, 27 Sep 2016 10:05:19 +0530 Subject: tdf#38835 - strip out non-trivial globals before main deleted calling OUString object calling in global Change-Id: Iac4cb9583bf8c00a6743d018f6234ca5181d72e3 Reviewed-on: https://gerrit.libreoffice.org/29312 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- filter/source/xsltdialog/typedetectionimport.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'filter') diff --git a/filter/source/xsltdialog/typedetectionimport.cxx b/filter/source/xsltdialog/typedetectionimport.cxx index fbe10b594855..cb2111a2613b 100644 --- a/filter/source/xsltdialog/typedetectionimport.cxx +++ b/filter/source/xsltdialog/typedetectionimport.cxx @@ -34,10 +34,10 @@ using namespace com::sun::star::xml::sax; using namespace com::sun::star; using namespace std; -static const OUString sNode( "node" ); -static const OUString sName( "oor:name" ); -static const OUString sUIName( "UIName" ); -static const OUString sData( "Data" ); +static const char sNode[] = "node" ; +static const char sName[] = "oor:name" ; +static const char sUIName[] = "UIName" ; +static const char sData[] = "Data" ; TypeDetectionImporter::TypeDetectionImporter() { -- cgit