summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-29 11:51:15 +0200
committerNoel Grandin <noel@peralex.com>2016-08-30 08:40:03 +0200
commit110528e6a2a5b7d46eadb1fb29a56728180657da (patch)
tree03214123c1864ffe9ba1933a790684b129c7eb49 /sd
parentab66fe65443af83216c51d310e0a341e40810d17 (diff)
convert DescriptionGenerator::PropertyType to scoped enum
Change-Id: Id55ccb4bf0109f1bb6f870b38792e3454b567877
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx b/sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx
index 8abed0243758..2a341a20af48 100644
--- a/sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx
+++ b/sd/source/ui/accessibility/AccessiblePresentationOLEShape.cxx
@@ -92,17 +92,17 @@ OUString
case PRESENTATION_OLE:
aDG.Initialize ("PresentationOLEShape");
//SVX_RESSTR(RID_SVXSTR_A11Y_ST_RECTANGLE));
- aDG.AddProperty ("CLSID" ,DescriptionGenerator::STRING);
+ aDG.AddProperty ("CLSID" ,DescriptionGenerator::PropertyType::String);
break;
case PRESENTATION_CHART:
aDG.Initialize ("PresentationChartShape");
//SVX_RESSTR(RID_SVXSTR_A11Y_ST_RECTANGLE));
- aDG.AddProperty ( "CLSID" , DescriptionGenerator::STRING);
+ aDG.AddProperty ( "CLSID" , DescriptionGenerator::PropertyType::String);
break;
case PRESENTATION_TABLE:
aDG.Initialize ("PresentationTableShape");
//SVX_RESSTR(RID_SVXSTR_A11Y_ST_RECTANGLE));
- aDG.AddProperty ("CLSID" , DescriptionGenerator::STRING);
+ aDG.AddProperty ("CLSID" , DescriptionGenerator::PropertyType::String);
break;
default:
aDG.Initialize ("Unknown accessible presentation OLE shape");