summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/propertyinfo.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-03-19 11:06:27 +0000
committerOliver Bolte <obo@openoffice.org>2004-03-19 11:06:27 +0000
commit0ff54156e7731d8bcff6b5660540e9073a030080 (patch)
tree00b831375cf2892e44cec4d97bada096ae62364e /extensions/source/propctrlr/propertyinfo.hxx
parent1944ccc659540f67da51e465c0650c20ca38ae07 (diff)
INTEGRATION: CWS formdesign01 (1.4.8); FILE MERGED
2003/11/26 15:57:44 fs 1.4.8.1: #i22878# implementations for disabling property controls depending on other property's values
Diffstat (limited to 'extensions/source/propctrlr/propertyinfo.hxx')
-rw-r--r--extensions/source/propctrlr/propertyinfo.hxx14
1 files changed, 4 insertions, 10 deletions
diff --git a/extensions/source/propctrlr/propertyinfo.hxx b/extensions/source/propctrlr/propertyinfo.hxx
index 3ea153d9b606..6c9aba26f440 100644
--- a/extensions/source/propctrlr/propertyinfo.hxx
+++ b/extensions/source/propctrlr/propertyinfo.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: propertyinfo.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2003-10-21 09:07:12 $
+ * last change: $Author: obo $ $Date: 2004-03-19 12:06:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -68,12 +68,7 @@
#ifndef _STRING_HXX
#include <tools/string.hxx>
#endif
-#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
-#include <com/sun/star/uno/Sequence.hxx>
-#endif
-#ifndef _RTL_USTRING_HXX_
-#include <rtl/ustring.hxx>
-#endif
+#include <vector>
//............................................................................
namespace pcr
@@ -91,8 +86,7 @@ namespace pcr
virtual sal_Int32 getPropertyHelpId(sal_Int32 _nId) const = 0;
virtual sal_Int16 getPropertyPos(sal_Int32 _nId) const = 0;
virtual sal_uInt32 getPropertyUIFlags(sal_Int32 _nId) const = 0;
- virtual ::com::sun::star::uno::Sequence< ::rtl::OUString >
- getPropertyEnumRepresentations(sal_Int32 _nId) const = 0;
+ virtual ::std::vector< String > getPropertyEnumRepresentations(sal_Int32 _nId) const = 0;
};
//............................................................................