diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-08-28 12:54:35 +0200 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2014-08-28 13:50:47 +0200 |
commit | 2fa3aed1cb779b15773d98af23a3f705dc949f05 (patch) | |
tree | 73f86431536ac077b02b6dcb7b44a7b424793cf6 /sd | |
parent | c75bddd73b125453b1d3f355195ad964bf27af28 (diff) |
parseXml should return xmlDocPtr instead of htmlDocPtr
Change-Id: Ia9fb79ea40ca840d7328a078e747ad64a63d18f1
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/sdmodeltestbase.hxx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sd/qa/unit/sdmodeltestbase.hxx b/sd/qa/unit/sdmodeltestbase.hxx index 20cdacce95b1..a5d1133b61dd 100644 --- a/sd/qa/unit/sdmodeltestbase.hxx +++ b/sd/qa/unit/sdmodeltestbase.hxx @@ -29,8 +29,13 @@ using namespace ::com::sun::star; -struct FileFormat { - const char* pName; const char* pFilterName; const char* pTypeName; const char* pUserData; sal_uLong nFormatType; +struct FileFormat +{ + const char* pName; + const char* pFilterName; + const char* pTypeName; + const char* pUserData; + sal_uLong nFormatType; }; // These values are taken from "Flags" in filter/source/config/fragments/filters/* @@ -47,7 +52,8 @@ pFilterName: <node oor:Name="..."> pTypeName: <prop oor:Name="UIName">...</prop> nFormatType: <prop oor:name="Flags">...</prop> */ -FileFormat aFileFormats[] = { +FileFormat aFileFormats[] = +{ { "odp", "impress8", "impress8", "", ODP_FORMAT_TYPE }, { "ppt", "MS PowerPoint 97", "Microsoft PowerPoint 97/2000/XP/2003", "sdfilt", PPT_FORMAT_TYPE }, { "pptx", "Impress MS PowerPoint 2007 XML", "MS PowerPoint 2007 XML", "", PPTX_FORMAT_TYPE }, |