Files
libreoffice/xmloff/source/table/XMLTableExport.cxx

553 lines
21 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by: Armin Le Grand. #118558# Correcting OLE attributes of LO3.4 at load time by loading as OOo3.3, details see task. http://svn.apache.org/viewvc?view=revision&revision=1195906 #118485# - Styles for OLEs are not saved. http://svn.apache.org/viewvc?view=revision&revision=1182166 #118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles http://svn.apache.org/viewvc?view=revision&revision=1293316 #119337# Solves the wrong get/setPropertyValue calls in SvxShapeText (and thus in SvxOle2Shape) http://svn.apache.org/viewvc?view=revision&revision=1344156 Patches contributed by Mathias Bauer (and others) gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 cws mba34issues01: #i117717#: remove wrong assertion http://svn.apache.org/viewvc?view=revision&revision=1172349 Patch contributed by Herbert Duerr goodbye Registration and License dialogs, don't let the door hit you http://svn.apache.org/viewvc?view=revision&revision=1172613 help gcc 4.6.0 on 32bit ubuntu 11.10" http://svn.apache.org/viewvc?view=revision&revision=1245357 Do not add targets for junit tests when junit is disabled. Patch contributed by Andre Fischer http://svn.apache.org/viewvc?view=revision&revision=1241508 Revert "sb140: #i117082# avoid unncessary static class data members commit 21d97438e2944861e26e4984195f959a0cce1e41. remove obsolete FreeBSD visibility special case. retain consolidated BSD bridge code, remove OS/2 pieces.
2012-11-12 17:21:24 +00:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <xmloff/table/XMLTableExport.hxx>
#include <xmloff/dllapi.h>
#include <sal/config.h>
#include <osl/diagnose.h>
#include <rtl/ustring.hxx>
#include <rtl/ustrbuf.hxx>
#include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
#include <com/sun/star/text/XText.hpp>
#include <com/sun/star/container/XNamed.hpp>
#include <com/sun/star/container/XEnumerationAccess.hpp>
#include <com/sun/star/table/XCellRange.hpp>
#include <com/sun/star/table/XColumnRowRange.hpp>
#include <com/sun/star/table/CellContentType.hpp>
#include <com/sun/star/table/XMergeableCell.hpp>
#include <com/sun/star/style/XStyle.hpp>
#include <com/sun/star/beans/XPropertySetInfo.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <xmloff/xmlnmspe.hxx>
#include <xmloff/xmlprmap.hxx>
#include <xmloff/xmlexppr.hxx>
#include <xmloff/xmlexp.hxx>
#include <xmloff/xmltypes.hxx>
#include <xmloff/maptype.hxx>
#include <xmloff/prhdlfac.hxx>
#include <tools/debug.hxx>
#include "table.hxx"
using namespace ::xmloff::token;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::table;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::text;
using namespace ::com::sun::star::style;
#define _MAP(name,prefix,token,type,context) { name, sizeof(name)-1, prefix, token, type, context, SvtSaveOptions::ODFVER_010, false }
#define CMAP(name,prefix,token,type,context) _MAP(name,prefix,token,type|XML_TYPE_PROP_TABLE_COLUMN,context)
#define RMAP(name,prefix,token,type,context) _MAP(name,prefix,token,type|XML_TYPE_PROP_TABLE_ROW,context)
#define MAP_END { 0L, 0, 0, XML_EMPTY, 0, 0, SvtSaveOptions::ODFVER_010, false }
const XMLPropertyMapEntry* getColumnPropertiesMap()
{
static const XMLPropertyMapEntry aXMLColumnProperties[] =
{
CMAP( "Width", XML_NAMESPACE_STYLE, XML_COLUMN_WIDTH, XML_TYPE_MEASURE, 0 ),
CMAP( "OptimalWidth", XML_NAMESPACE_STYLE, XML_USE_OPTIMAL_COLUMN_WIDTH, XML_TYPE_BOOL, 0 ),
MAP_END
};
return &aXMLColumnProperties[0];
}
const XMLPropertyMapEntry* getRowPropertiesMap()
{
static const XMLPropertyMapEntry aXMLRowProperties[] =
{
RMAP( "Height", XML_NAMESPACE_STYLE, XML_ROW_HEIGHT, XML_TYPE_MEASURE, 0 ),
RMAP( "OptimalHeight", XML_NAMESPACE_STYLE, XML_MIN_ROW_HEIGHT, XML_TYPE_MEASURE, 0 ),
RMAP( "OptimalWidth", XML_NAMESPACE_STYLE, XML_USE_OPTIMAL_ROW_HEIGHT, XML_TYPE_BOOL, 0 ),
MAP_END
};
return &aXMLRowProperties[0];
}
class StringStatisticHelper
{
private:
std::map< OUString, sal_Int32 > mStats;
public:
void add( const OUString& rStyleName );
void clear() { mStats.clear(); }
sal_Int32 getModeString( /* out */ OUString& rModeString );
};
void StringStatisticHelper::add( const OUString& rStyleName )
{
std::map< OUString, sal_Int32 >::iterator iter( mStats.find( rStyleName ) );
if( iter == mStats.end() )
{
mStats[rStyleName] = 1;
}
else
{
(*iter).second += 1;
}
}
sal_Int32 StringStatisticHelper::getModeString( OUString& rStyleName )
{
sal_Int32 nMax = 0;
const std::map< OUString, sal_Int32 >::const_iterator aEnd( mStats.end() );
for( std::map< OUString, sal_Int32 >::iterator iter( mStats.begin() );
iter != aEnd; ++iter)
{
if( (*iter).second > nMax )
{
rStyleName = (*iter).first;
nMax = (*iter).second;
}
}
return nMax;
}
// class XMLTableExport
XMLTableExport::XMLTableExport(SvXMLExport& rExp, const rtl::Reference< SvXMLExportPropertyMapper >& xExportPropertyMapper, const rtl::Reference< XMLPropertyHandlerFactory >& xFactoryRef )
: mrExport( rExp )
, mbExportTables( false )
{
Reference< XMultiServiceFactory > xFac( rExp.GetModel(), UNO_QUERY );
if( xFac.is() ) try
{
Sequence< OUString > sSNS( xFac->getAvailableServiceNames() );
sal_Int32 n = sSNS.getLength();
const OUString* pSNS( sSNS.getConstArray() );
while( --n > 0 )
{
if( (*pSNS++) == "com.sun.star.drawing.TableShape" )
{
mbExportTables = true;
break;
}
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
}
mxCellExportPropertySetMapper = xExportPropertyMapper;
mxCellExportPropertySetMapper->ChainExportMapper(XMLTextParagraphExport::CreateParaExtPropMapper(rExp));
mxRowExportPropertySetMapper = new SvXMLExportPropertyMapper( new XMLPropertySetMapper( getRowPropertiesMap(), xFactoryRef.get(), true ) );
mxColumnExportPropertySetMapper = new SvXMLExportPropertyMapper( new XMLPropertySetMapper( getColumnPropertiesMap(), xFactoryRef.get(), true ) );
mrExport.GetAutoStylePool()->AddFamily(XML_STYLE_FAMILY_TABLE_COLUMN,
OUString(XML_STYLE_FAMILY_TABLE_COLUMN_STYLES_NAME),
mxColumnExportPropertySetMapper.get(),
OUString(XML_STYLE_FAMILY_TABLE_COLUMN_STYLES_PREFIX));
mrExport.GetAutoStylePool()->AddFamily(XML_STYLE_FAMILY_TABLE_ROW,
OUString(XML_STYLE_FAMILY_TABLE_ROW_STYLES_NAME),
mxRowExportPropertySetMapper.get(),
OUString(XML_STYLE_FAMILY_TABLE_ROW_STYLES_PREFIX));
mrExport.GetAutoStylePool()->AddFamily(XML_STYLE_FAMILY_TABLE_CELL,
OUString(XML_STYLE_FAMILY_TABLE_CELL_STYLES_NAME),
mxCellExportPropertySetMapper.get(),
OUString(XML_STYLE_FAMILY_TABLE_CELL_STYLES_PREFIX));
}
XMLTableExport::~XMLTableExport ()
{
}
static bool has_states( const std::vector< XMLPropertyState >& xPropStates )
{
if( !xPropStates.empty() )
{
std::vector< XMLPropertyState >::const_iterator aIter( xPropStates.begin() );
std::vector< XMLPropertyState >::const_iterator aEnd( xPropStates.end() );
while( aIter != aEnd )
{
if( aIter->mnIndex != -1 )
return true;
2011-01-01 20:50:03 +00:00
++aIter;
}
}
return false;
}
void XMLTableExport::collectTableAutoStyles(const Reference < XColumnRowRange >& xColumnRowRange)
{
if( !mbExportTables )
return;
std::shared_ptr< XMLTableInfo > xTableInfo( new XMLTableInfo() );
maTableInfoMap[xColumnRowRange] = xTableInfo;
try
{
Reference< XIndexAccess > xIndexAccessCols( xColumnRowRange->getColumns(), UNO_QUERY_THROW );
const sal_Int32 nColumnCount = xIndexAccessCols->getCount();
for( sal_Int32 nColumn = 0; nColumn < nColumnCount; ++nColumn ) try
{
Reference< XPropertySet > xPropSet( xIndexAccessCols->getByIndex(nColumn) , UNO_QUERY_THROW );
std::vector< XMLPropertyState > xPropStates( mxColumnExportPropertySetMapper->Filter( xPropSet ) );
if( has_states( xPropStates ) )
{
const OUString sStyleName( mrExport.GetAutoStylePool()->Add(XML_STYLE_FAMILY_TABLE_COLUMN, xPropStates) );
Reference< XInterface > xKey( xPropSet, UNO_QUERY );
xTableInfo->maColumnStyleMap[xKey] = sStyleName;
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL("xmloff::XMLTableExport::collectTableAutoStyles(), exception during column style collection!");
}
Reference< XIndexAccess > xIndexAccessRows( xColumnRowRange->getRows(), UNO_QUERY_THROW );
const sal_Int32 nRowCount = xIndexAccessRows->getCount();
xTableInfo->maDefaultRowCellStyles.resize(nRowCount);
StringStatisticHelper aStringStatistic;
for( sal_Int32 nRow = 0; nRow < nRowCount; ++nRow ) try
{
Reference< XPropertySet > xPropSet( xIndexAccessRows->getByIndex(nRow) , UNO_QUERY_THROW );
std::vector< XMLPropertyState > xRowPropStates( mxRowExportPropertySetMapper->Filter( xPropSet ) );
if( has_states( xRowPropStates ) )
{
const OUString sStyleName( mrExport.GetAutoStylePool()->Add(XML_STYLE_FAMILY_TABLE_ROW, xRowPropStates) );
Reference< XInterface > xKey( xPropSet, UNO_QUERY );
xTableInfo->maRowStyleMap[xKey] = sStyleName;
}
// get the current row
Reference< XCellRange > xCellRange( xPropSet, UNO_QUERY_THROW );
for ( sal_Int32 nColumn = 0; nColumn < nColumnCount; ++nColumn )
{
// get current cell, remarks row index is 0, because we get the range for each row separate
Reference< XPropertySet > xCellSet( xCellRange->getCellByPosition(nColumn, 0), UNO_QUERY_THROW );
// get style
OUString sParentStyleName;
Reference< XPropertySetInfo > xPropertySetInfo( xCellSet->getPropertySetInfo() );
if( xPropertySetInfo.is() && xPropertySetInfo->hasPropertyByName("Style") )
{
Reference< XStyle > xStyle( xCellSet->getPropertyValue("Style"), UNO_QUERY );
if( xStyle.is() )
sParentStyleName = xStyle->getName();
}
// create auto style, if needed
OUString sStyleName;
std::vector< XMLPropertyState > xCellPropStates( mxCellExportPropertySetMapper->Filter( xCellSet ) );
if( has_states( xCellPropStates ) )
sStyleName = mrExport.GetAutoStylePool()->Add(XML_STYLE_FAMILY_TABLE_CELL, xCellPropStates);
else
sStyleName = sParentStyleName;
if( !sStyleName.isEmpty() )
{
Reference< XInterface > xKey( xCellSet, UNO_QUERY );
xTableInfo->maCellStyleMap[xKey] = sStyleName;
}
// create auto style for text
Reference< XText > xText(xCellSet, UNO_QUERY);
if(xText.is() && !xText->getString().isEmpty())
GetExport().GetTextParagraphExport()->collectTextAutoStyles( xText );
aStringStatistic.add( sStyleName );
}
OUString sDefaultCellStyle;
if( aStringStatistic.getModeString( sDefaultCellStyle ) > 1 )
xTableInfo->maDefaultRowCellStyles[nRow] = sDefaultCellStyle;
aStringStatistic.clear();
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL("xmloff::XMLTableExport::collectTableAutoStyles(), exception during column style collection!");
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL("xmloff::XMLTableExport::collectTableAutoStyles(), exception caught!");
}
}
void XMLTableExport::exportTable( const Reference < XColumnRowRange >& xColumnRowRange )
{
if( !mbExportTables )
return;
try
{
std::shared_ptr< XMLTableInfo > xTableInfo( maTableInfoMap[xColumnRowRange] );
// get row and column count
Reference< XIndexAccess > xIndexAccess( xColumnRowRange->getRows(), UNO_QUERY_THROW );
Reference< XIndexAccess > xIndexAccessCols( xColumnRowRange->getColumns(), UNO_QUERY_THROW );
const sal_Int32 rowCount = xIndexAccess->getCount();
const sal_Int32 columnCount = xIndexAccessCols->getCount();
SvXMLElementExport tableElement( mrExport, XML_NAMESPACE_TABLE, XML_TABLE, true, true );
// export table columns
ExportTableColumns( xIndexAccessCols, xTableInfo );
// start iterating rows and columns
for ( sal_Int32 rowIndex = 0; rowIndex < rowCount; rowIndex++ )
{
// get the current row
Reference< XCellRange > xCellRange( xIndexAccess->getByIndex(rowIndex), UNO_QUERY_THROW );
OUString sDefaultCellStyle;
// table:style-name
if( xTableInfo.get() )
{
Reference< XInterface > xKey( xCellRange, UNO_QUERY );
const OUString sStyleName( xTableInfo->maRowStyleMap[xKey] );
if( !sStyleName.isEmpty() )
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_STYLE_NAME, sStyleName );
sDefaultCellStyle = xTableInfo->maDefaultRowCellStyles[rowIndex];
if( !sDefaultCellStyle.isEmpty() )
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_DEFAULT_CELL_STYLE_NAME, sDefaultCellStyle );
}
// write row element
SvXMLElementExport tableRowElement( mrExport, XML_NAMESPACE_TABLE, XML_TABLE_ROW, true, true );
for ( sal_Int32 columnIndex = 0; columnIndex < columnCount; columnIndex++ )
{
// get current cell, remarks row index is 0, because we get the range for each row separate
Reference< XCell > xCell( xCellRange->getCellByPosition(columnIndex, 0), UNO_QUERY_THROW );
// use XMergeableCell interface from offapi
Reference< XMergeableCell > xMergeableCell( xCell, UNO_QUERY_THROW );
// export cell
ExportCell( xCell, xTableInfo, sDefaultCellStyle );
}
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
OSL_FAIL( "XMLTableExport::exportTable(), exception caught!" );
}
}
// Export the table columns
void XMLTableExport::ExportTableColumns( const Reference < XIndexAccess >& xtableColumnsIndexAccess, const std::shared_ptr< XMLTableInfo >& rTableInfo )
{
const sal_Int32 nColumnCount = xtableColumnsIndexAccess->getCount();
for( sal_Int32 nColumn = 0; nColumn < nColumnCount; ++nColumn )
{
Reference< XPropertySet > xColumnProperties( xtableColumnsIndexAccess->getByIndex(nColumn) , UNO_QUERY );
if ( xColumnProperties.is() )
{
// table:style-name
if( rTableInfo.get() )
{
Reference< XInterface > xKey( xColumnProperties, UNO_QUERY );
const OUString sStyleName( rTableInfo->maColumnStyleMap[xKey] );
if( !sStyleName.isEmpty() )
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_STYLE_NAME, sStyleName );
}
// TODO: All columns first have to be checked if some ones
// have identical properties. If yes, attr table:number-columns-repeated
// has to be written.
SvXMLElementExport tableColumnElement( mrExport, XML_NAMESPACE_TABLE, XML_TABLE_COLUMN, true, true );
}
}
}
// ODF export for a table cell.
void XMLTableExport::ExportCell( const Reference < XCell >& xCell, const std::shared_ptr< XMLTableInfo >& rTableInfo, const OUString& rDefaultCellStyle )
{
bool bIsMerged = false;
sal_Int32 nRowSpan = 0;
sal_Int32 nColSpan = 0;
try
{
if( rTableInfo.get() )
{
// table:style-name
Reference< XInterface > xKey( xCell, UNO_QUERY );
const OUString sStyleName( rTableInfo->maCellStyleMap[xKey] );
if( !sStyleName.isEmpty() && (sStyleName != rDefaultCellStyle) )
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_STYLE_NAME, sStyleName );
}
Reference< XMergeableCell > xMerge( xCell, UNO_QUERY );
if( xMerge.is() )
{
bIsMerged = xMerge->isMerged();
nRowSpan = xMerge->getRowSpan();
nColSpan = xMerge->getColumnSpan();
}
DBG_ASSERT( (nRowSpan >= 1) && (nColSpan >= 1), "xmloff::XMLTableExport::ExportCell(), illegal row or col span < 1?" );
}
2011-06-16 00:26:29 +01:00
catch (const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL( "exception while exporting a table cell" );
}
// table:number-columns-repeated
// todo
// table:number-columns-spanned
if( nColSpan > 1 )
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_NUMBER_COLUMNS_SPANNED, OUString::number( nColSpan ) );
// table:number-rows-spanned
if( nRowSpan > 1 )
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_NUMBER_ROWS_SPANNED, OUString::number( nRowSpan ) );
// <table:table-cell> or <table:covered-table-cell>
SvXMLElementExport tableCellElement( mrExport, XML_NAMESPACE_TABLE, bIsMerged ? XML_COVERED_TABLE_CELL : XML_TABLE_CELL, true, true );
// export cells text content
ImpExportText( xCell );
}
// ODF export of the text contents of a table cell.
// Remarks: Up to now we only export text contents!
// TODO: Check against nested tables ....
void XMLTableExport::ImpExportText( const Reference< XCell >& xCell )
{
Reference< XText > xText( xCell, UNO_QUERY );
if( xText.is() && !xText->getString().isEmpty())
mrExport.GetTextParagraphExport()->exportText( xText );
}
void XMLTableExport::exportTableStyles()
{
if( !mbExportTables )
return;
XMLStyleExport aStEx(mrExport, OUString(), mrExport.GetAutoStylePool().get());
// write graphic family styles
aStEx.exportStyleFamily("cell", OUString(XML_STYLE_FAMILY_TABLE_CELL_STYLES_NAME), mxCellExportPropertySetMapper.get(), true, XML_STYLE_FAMILY_TABLE_CELL);
exportTableTemplates();
}
// Export the collected automatic styles
void XMLTableExport::exportAutoStyles()
{
if( !mbExportTables )
return;
mrExport.GetAutoStylePool()->exportXML( XML_STYLE_FAMILY_TABLE_COLUMN, mrExport.GetDocHandler(), mrExport.GetMM100UnitConverter(), mrExport.GetNamespaceMap() );
mrExport.GetAutoStylePool()->exportXML( XML_STYLE_FAMILY_TABLE_ROW, mrExport.GetDocHandler(), mrExport.GetMM100UnitConverter(), mrExport.GetNamespaceMap() );
mrExport.GetAutoStylePool()->exportXML( XML_STYLE_FAMILY_TABLE_CELL, mrExport.GetDocHandler(), mrExport.GetMM100UnitConverter(), mrExport.GetNamespaceMap() );
}
const TableStyleElement* getTableStyleMap()
{
static const struct TableStyleElement gTableStyleElements[] =
{
{ XML_FIRST_ROW, OUString("first-row") },
{ XML_LAST_ROW, OUString("last-row") },
{ XML_FIRST_COLUMN, OUString("first-column") },
{ XML_LAST_COLUMN, OUString("last-column") },
{ XML_EVEN_ROWS, OUString("even-rows") },
{ XML_ODD_ROWS, OUString("odd-rows") },
{ XML_EVEN_COLUMNS, OUString("even-columns") },
{ XML_ODD_COLUMNS, OUString("odd-columns") },
{ XML_BODY, OUString("body") },
{ XML_TOKEN_END, OUString() }
};
return &gTableStyleElements[0];
}
void XMLTableExport::exportTableTemplates()
{
if( !mbExportTables )
return;
try
{
Reference< XStyleFamiliesSupplier > xFamiliesSupp( mrExport.GetModel(), UNO_QUERY_THROW );
Reference< XNameAccess > xFamilies( xFamiliesSupp->getStyleFamilies() );
const OUString sFamilyName( "table" );
Reference< XIndexAccess > xTableFamily( xFamilies->getByName( sFamilyName ), UNO_QUERY_THROW );
for( sal_Int32 nIndex = 0; nIndex < xTableFamily->getCount(); nIndex++ ) try
{
Reference< XStyle > xTableStyle( xTableFamily->getByIndex( nIndex ), UNO_QUERY_THROW );
if( !xTableStyle->isInUse() )
continue;
Reference< XNameAccess > xStyleNames( xTableStyle, UNO_QUERY_THROW );
mrExport.AddAttribute(XML_NAMESPACE_TEXT, XML_STYLE_NAME, GetExport().EncodeStyleName( xTableStyle->getName() ) );
SvXMLElementExport tableTemplate( mrExport, XML_NAMESPACE_TABLE, XML_TABLE_TEMPLATE, true, true );
const TableStyleElement* pElements = getTableStyleMap();
while( pElements->meElement != XML_TOKEN_END )
{
try
{
Reference< XStyle > xStyle( xStyleNames->getByName( pElements->msStyleName ), UNO_QUERY );
if( xStyle.is() )
{
mrExport.AddAttribute(XML_NAMESPACE_TABLE, XML_STYLE_NAME, GetExport().EncodeStyleName( xStyle->getName() ) );
SvXMLElementExport element( mrExport, XML_NAMESPACE_TABLE, pElements->meElement, true, true );
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL("xmloff::XMLTableExport::exportTableTemplates(), exception caught!");
}
pElements++;
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL("xmloff::XMLTableExport::exportTableDesigns(), exception caught while exporting a table design!");
}
}
2011-06-16 00:26:29 +01:00
catch(const Exception&)
{
2011-03-01 19:07:44 +01:00
OSL_FAIL("xmloff::XMLTableExport::exportTableDesigns(), exception caught!");
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */