summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/enumrepresentation.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-07-26 06:55:08 +0000
committerRüdiger Timm <rt@openoffice.org>2006-07-26 06:55:08 +0000
commit304988dc18515ce510088e8276fcd15e18464349 (patch)
tree124bf3342f4ee21d5a221c52c16ce4f847f1f09d /extensions/source/propctrlr/enumrepresentation.hxx
parent797d7d4a115812fe6ede1badf36b023dbb7a98f0 (diff)
INTEGRATION: CWS dba204b (1.2.68); FILE MERGED
2006/07/06 14:52:27 fs 1.2.68.1: #i65159# describePropertyLine now returning a LineDescriptor, instead of taking an out parameter / some less warnings
Diffstat (limited to 'extensions/source/propctrlr/enumrepresentation.hxx')
-rw-r--r--extensions/source/propctrlr/enumrepresentation.hxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/extensions/source/propctrlr/enumrepresentation.hxx b/extensions/source/propctrlr/enumrepresentation.hxx
index 53d5a700c40d..c417732e7a94 100644
--- a/extensions/source/propctrlr/enumrepresentation.hxx
+++ b/extensions/source/propctrlr/enumrepresentation.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: enumrepresentation.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: vg $ $Date: 2006-03-14 11:22:01 $
+ * last change: $Author: rt $ $Date: 2006-07-26 07:55:08 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -59,7 +59,7 @@ namespace pcr
//====================================================================
//= IPropertyEnumRepresentation
//====================================================================
- class IPropertyEnumRepresentation : public ::rtl::IReference
+ class SAL_NO_VTABLE IPropertyEnumRepresentation : public ::rtl::IReference
{
public:
/** retrieves all descriptions of all possible values of the enumeration property
@@ -79,6 +79,8 @@ namespace pcr
virtual ::rtl::OUString SAL_CALL getDescriptionForValue(
const ::com::sun::star::uno::Any& _rEnumValue
) const = 0;
+
+ virtual ~IPropertyEnumRepresentation() { };
};
//........................................................................