summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-27 02:57:35 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-27 03:14:45 +0100
commit646daee253b69404591c006ec6e717b6660af30b (patch)
tree6f844b932c6e10ffb054276138643c504208fa22 /xmloff
parentc52851bf5603136fb58b828ff9e848aa0cdfbef0 (diff)
kill some unused inlines
Change-Id: I17160b264b547067c694dd268eb0d3bd1086565d
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtflde.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/xmloff/source/text/txtflde.cxx b/xmloff/source/text/txtflde.cxx
index 92bc85bb7c89..62c8bdf288fb 100644
--- a/xmloff/source/text/txtflde.cxx
+++ b/xmloff/source/text/txtflde.cxx
@@ -266,8 +266,6 @@ inline sal_Int8 GetInt8Property(const OUString&,
const Reference<XPropertySet> &);
inline util::DateTime const GetDateTimeProperty( const OUString& sPropName,
const Reference<XPropertySet> & xPropSet);
-inline util::Date const GetDateProperty( const OUString& sPropName,
- const Reference<XPropertySet> & xPropSet);
inline Sequence<OUString> const GetStringSequenceProperty(
const OUString& sPropName,
const Reference<XPropertySet> & xPropSet);
@@ -3587,16 +3585,6 @@ inline util::DateTime const GetDateTimeProperty(
return aTime;
}
-inline util::Date const GetDateProperty(
- const OUString& sPropName,
- const Reference<XPropertySet> & xPropSet)
-{
- Any aAny = xPropSet->getPropertyValue(sPropName);
- util::Date aDate;
- aAny >>= aDate;
- return aDate;
-}
-
inline Sequence<OUString> const GetStringSequenceProperty(
const OUString& sPropName,
const Reference<XPropertySet> & xPropSet)