diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-11 13:03:07 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-11 13:04:09 -0400 |
commit | ee5fc5d25fe102c30daf7d181b8181d40b85a4f3 (patch) | |
tree | 630217c52fcbca775e094fa69702e89ef773b414 /svx | |
parent | 02a89fdb0e54c31e510682f9b70f9fd33fe88efa (diff) |
Removing EXTENDED_DATE. There is really no such thing.
This can be safely substituted by the normal DATE.
Change-Id: I I6b4ccfa342a8d7b638b013cdce64a0b7ff477ec0
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unomod.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unodraw/unomod.cxx b/svx/source/unodraw/unomod.cxx index 8292c13b43b0..736038ea6441 100644 --- a/svx/source/unodraw/unomod.cxx +++ b/svx/source/unodraw/unomod.cxx @@ -413,7 +413,7 @@ uno::Reference< uno::XInterface > SAL_CALL SvxUnoDrawingModel::createInstance( c if( 0 == aServiceSpecifier.reverseCompareToAsciiL( RTL_CONSTASCII_STRINGPARAM("com.sun.star.text.TextField.DateTime") ) ) { - return (::cppu::OWeakObject * )new SvxUnoTextField(text::textfield::Type::EXTENDED_DATE); + return (::cppu::OWeakObject * )new SvxUnoTextField(text::textfield::Type::DATE); } uno::Reference< uno::XInterface > xRet; |