summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/enumrepresentation.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-12-05 10:11:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-12-06 07:42:50 +0100
commitc0ac78c97174fcde68daf174f6e8ade502c507d3 (patch)
tree800de448258b3fd82d78efdb53d4f5c8eed6cb26 /extensions/source/propctrlr/enumrepresentation.hxx
parentda85b582656219a0bc9d20cef59ae6b7ee1c4a9b (diff)
loplugin:salcall handle virtual methods
Change-Id: Iab95db31188ea2914a46d63a7ebef3d825e6ec42 Reviewed-on: https://gerrit.libreoffice.org/45851 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
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;