summaryrefslogtreecommitdiff
path: root/basctl/source/dlged
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-12-10 16:02:06 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-12-10 16:02:06 +0000
commit4db953e05419f4d6a0332f648de57b2157c63213 (patch)
tree6ca53e367dc12ab9e13fe20913fbc161922543e7 /basctl/source/dlged
parentc574a9e4b8e3267bbf0dd8274b8ad378b3c85f96 (diff)
INTEGRATION: CWS tbe14 (1.16.282); FILE MERGED
2004/11/17 14:06:38 tbe 1.16.282.1: #i31563# scroll area too small
Diffstat (limited to 'basctl/source/dlged')
-rw-r--r--basctl/source/dlged/dlgedfac.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basctl/source/dlged/dlgedfac.cxx b/basctl/source/dlged/dlgedfac.cxx
index 482c21e44782..92654e98f7ab 100644
--- a/basctl/source/dlged/dlgedfac.cxx
+++ b/basctl/source/dlged/dlgedfac.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgedfac.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: tbe $ $Date: 2002-08-01 15:06:28 $
+ * last change: $Author: rt $ $Date: 2004-12-10 17:02:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -151,7 +151,7 @@ IMPL_LINK( DlgEdFactory, MakeObject, SdrObjFactory *, pObjFactory )
if (xPSet.is())
{
sal_Bool bB = sal_True;
- xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Dropdown" ) ), uno::Any(&bB,::getBooleanCppuType()));
+ xPSet->setPropertyValue( DLGED_PROP_DROPDOWN, uno::Any(&bB,::getBooleanCppuType()));
}
}
catch(...)
@@ -188,7 +188,7 @@ IMPL_LINK( DlgEdFactory, MakeObject, SdrObjFactory *, pObjFactory )
{
uno::Any aValue;
aValue <<= (sal_Int32) ::com::sun::star::awt::ScrollBarOrientation::VERTICAL;
- xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Orientation" ) ), aValue );
+ xPSet->setPropertyValue( DLGED_PROP_ORIENTATION, aValue );
}
}
catch(...)
@@ -210,7 +210,7 @@ IMPL_LINK( DlgEdFactory, MakeObject, SdrObjFactory *, pObjFactory )
{
uno::Any aValue;
aValue <<= (sal_Int32) 1;
- xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Orientation" ) ), aValue );
+ xPSet->setPropertyValue( DLGED_PROP_ORIENTATION, aValue );
}
}
catch(...)