[Libreoffice-commits] core.git: oox/source

Michael Stahl mstahl at redhat.com
Wed Feb 13 11:06:53 PST 2013


 oox/source/export/chartexport.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit d90e0768fc6a4829e586a9b43187011944d9be87
Author: Michael Stahl <mstahl at 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 )


More information about the Libreoffice-commits mailing list