summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/enumrepresentation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/propctrlr/enumrepresentation.hxx')
-rw-r--r--extensions/source/propctrlr/enumrepresentation.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/enumrepresentation.hxx b/extensions/source/propctrlr/enumrepresentation.hxx
index aa8c1f5bd8ea..90428590e670 100644
--- a/extensions/source/propctrlr/enumrepresentation.hxx
+++ b/extensions/source/propctrlr/enumrepresentation.hxx
@@ -39,19 +39,19 @@ namespace pcr
public:
/** retrieves all descriptions of all possible values of the enumeration property
*/
- virtual std::vector< OUString > SAL_CALL getDescriptions(
+ virtual std::vector< OUString > getDescriptions(
) const = 0;
/** converts a given description into a property value
*/
- virtual void SAL_CALL getValueFromDescription(
+ virtual void getValueFromDescription(
const OUString& _rDescription,
css::uno::Any& _out_rValue
) const = 0;
/** converts a given property value into a description
*/
- virtual OUString SAL_CALL getDescriptionForValue(
+ virtual OUString getDescriptionForValue(
const css::uno::Any& _rEnumValue
) const = 0;