summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/oleprops.cxx
diff options
context:
space:
mode:
authorElton Chung <elton@layerjet.com>2012-02-05 18:47:50 +0800
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-02-05 21:40:30 +0400
commit9c2f7056a82c4d7719715ca1c77f8dd4c17aa24c (patch)
treefcfff781b70e6423b5b5c32831eae1ca251be6b7 /sfx2/source/doc/oleprops.cxx
parent4fa8d043f8336e7b35130934498f8a4b357967d3 (diff)
Remove unused code
Diffstat (limited to 'sfx2/source/doc/oleprops.cxx')
-rw-r--r--sfx2/source/doc/oleprops.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/sfx2/source/doc/oleprops.cxx b/sfx2/source/doc/oleprops.cxx
index 91d9c5bce5ac..9c111a05d2a8 100644
--- a/sfx2/source/doc/oleprops.cxx
+++ b/sfx2/source/doc/oleprops.cxx
@@ -181,7 +181,6 @@ class SfxOleString16Property : public SfxOleStringPropertyBase
{
public:
explicit SfxOleString16Property( sal_Int32 nPropId );
- explicit SfxOleString16Property( sal_Int32 nPropId, const String& rValue );
private:
virtual void ImplLoad( SvStream& rStrm );
@@ -216,8 +215,6 @@ class SfxOleDateProperty : public SfxOlePropertyBase
{
public:
explicit SfxOleDateProperty( sal_Int32 nPropId );
- /** @param rDate Date as LOCAL time. */
- explicit SfxOleDateProperty( sal_Int32 nPropId, const util::Date& rDate );
/** Returns the date value as LOCAL time. */
inline const util::Date& GetValue() const { return maDate; }
@@ -571,11 +568,6 @@ SfxOleString16Property::SfxOleString16Property( sal_Int32 nPropId ) :
{
}
-SfxOleString16Property::SfxOleString16Property( sal_Int32 nPropId, const String& rValue ) :
- SfxOleStringPropertyBase( nPropId, PROPTYPE_STRING16, RTL_TEXTENCODING_UCS2, rValue )
-{
-}
-
void SfxOleString16Property::ImplLoad( SvStream& rStrm )
{
SetValue( LoadString16( rStrm ) );
@@ -648,12 +640,6 @@ SfxOleDateProperty::SfxOleDateProperty( sal_Int32 nPropId ) :
{
}
-SfxOleDateProperty::SfxOleDateProperty( sal_Int32 nPropId, const util::Date& rDate ) :
- SfxOlePropertyBase( nPropId, PROPTYPE_DATE ),
- maDate( rDate )
-{
-}
-
void SfxOleDateProperty::ImplLoad( SvStream& rStrm )
{
double fValue(0.0);