summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-02-13 20:03:54 +0100
committerMichael Stahl <mstahl@redhat.com>2013-02-13 20:03:54 +0100
commitd90e0768fc6a4829e586a9b43187011944d9be87 (patch)
tree2aefea8a5336c0d4bf4eec22b933f4f512fbbb5e /oox
parentc3aad7456adb8a24e2350c9b50778adefb2d1444 (diff)
oox: fix build breaker: stop using some non-existent "S"
Change-Id: I06124875ad7b4a995010be26f29a16df0b3bd072
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/chartexport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index df2400d959c1..ff207d38d8b3 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 )