diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-07-02 13:58:52 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-10 14:46:45 +0100 |
commit | ac893720de5b0815d57b87ae5f9a08764df08a93 (patch) | |
tree | 794ade123885ba7d4f3889a3b2d7507103ec42d2 /xmloff/source/draw | |
parent | 6a71f121bd4b1ab5567fdb07a048715c4fd38097 (diff) |
PCH for xmloff, including LO headers
Change-Id: I50e8eb58ef9b764cfb847b36b4e42f95bc437233
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/ximppage.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index e80ccdac10be..237f670c45f0 100644 --- a/xmloff/source/draw/sdxmlexp.cxx +++ b/xmloff/source/draw/sdxmlexp.cxx @@ -2768,7 +2768,7 @@ void SdXMLExport::exportAnnotations( const Reference<XDrawPage>& xDrawPage ) { // date time - DateTime aDate( xAnnotation->getDateTime() ); + com::sun::star::util::DateTime aDate( xAnnotation->getDateTime() ); ::sax::Converter::convertDateTime(sStringBuffer, aDate, true); SvXMLElementExport aDateElem( *this, XML_NAMESPACE_DC, XML_DATE, sal_True, sal_False ); Characters(sStringBuffer.makeStringAndClear()); diff --git a/xmloff/source/draw/ximppage.cxx b/xmloff/source/draw/ximppage.cxx index 0bc59bb48c9b..dbae7c7f733d 100644 --- a/xmloff/source/draw/ximppage.cxx +++ b/xmloff/source/draw/ximppage.cxx @@ -193,7 +193,7 @@ void DrawAnnotationContext::EndElement() { mxAnnotation->setAuthor( maAuthorBuffer.makeStringAndClear() ); - DateTime aDateTime; + util::DateTime aDateTime; if (::sax::Converter::convertDateTime(aDateTime, maDateBuffer.makeStringAndClear())) { |