summaryrefslogtreecommitdiff
path: root/unotools/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-07-17 05:41:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-07-17 08:18:11 +0200
commit7bad1516c5f2a85b5bae3f49261ac2494cbb7162 (patch)
treee16e60b92b2bead4e22a24949786d04008cf59ff /unotools/source
parentff55ad1aceb10b900254c8ad3629775b7789d60a (diff)
loplugin:unusedmethods
Change-Id: Ie2285f64919d1c83b0a8df4ceb827f731e5cd609 Reviewed-on: https://gerrit.libreoffice.org/75739 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/misc/datetime.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/unotools/source/misc/datetime.cxx b/unotools/source/misc/datetime.cxx
index 667a5898f825..88d5095bd385 100644
--- a/unotools/source/misc/datetime.cxx
+++ b/unotools/source/misc/datetime.cxx
@@ -257,13 +257,6 @@ void typeConvert(const css::util::DateTime& _rDateTime, DateTime& _rOut)
_rOut = DateTime(aDate, aTime);
}
-void extractDate(const css::util::DateTime& _rDateTime, css::util::Date& _rOut)
-{
- _rOut.Day = _rDateTime.Day;
- _rOut.Month = _rDateTime.Month;
- _rOut.Year = _rDateTime.Year;
-}
-
OUString toISO8601(const css::util::DateTime& rDateTime)
{
OUStringBuffer rBuffer;