oox/source/export/chartexport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit d90e0768fc6a4829e586a9b43187011944d9be87 Author: Michael Stahl <mst...@redhat.com> Date: Wed Feb 13 20:03:54 2013 +0100 oox: fix build breaker: stop using some non-existent "S" Change-Id: I06124875ad7b4a995010be26f29a16df0b3bd072 diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index df2400d..ff207d3 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -2320,7 +2320,7 @@ void ChartExport::exportDataLabels( { namespace cssc2 = ::com::sun::star::chart2; cssc2::DataPointLabel aLabel; - if( GetProperty( xPropSet, S( "Label" ) ) ) + if (GetProperty( xPropSet, "Label")) { mAny >>= aLabel; @@ -2328,7 +2328,7 @@ void ChartExport::exportDataLabels( sal_Int32 nPlacement; const char *aPlacement = NULL; - if( GetProperty( xPropSet, S( "LabelPlacement" ) ) ) + if (GetProperty( xPropSet, "LabelPlacement")) mAny >>= nPlacement; switch( nPlacement ) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits