summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-26 16:07:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-26 16:07:59 +0200
commitf85303359d5284fe21b28c99596d3f513c834ee2 (patch)
treea470c6d95833e2a6d9b19295292057182a2822f6
parent1df1c5eed9d44130fee818745cbb3d5ee59b7c3f (diff)
loplugin:inlinevisible
Change-Id: Id2530063cd0302b65dcc82965f1b81c31b759b63
-rw-r--r--include/connectivity/dbconversion.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/connectivity/dbconversion.hxx b/include/connectivity/dbconversion.hxx
index 169682a6861f..ebd06b12dfda 100644
--- a/include/connectivity/dbconversion.hxx
+++ b/include/connectivity/dbconversion.hxx
@@ -123,11 +123,11 @@ namespace dbtools
/** convert a double which is a date value relative to a given fixed date into a date value relative
to the standard db null date.
*/
- OOO_DLLPUBLIC_DBTOOLS inline double toStandardDbDate(const ::com::sun::star::util::Date& _rNullDate, double _rVal) { return _rVal + toDays(_rNullDate); }
+ inline double toStandardDbDate(const ::com::sun::star::util::Date& _rNullDate, double _rVal) { return _rVal + toDays(_rNullDate); }
/** convert a double which is a date value relative to the standard db null date into a date value relative
to a given fixed date.
*/
- OOO_DLLPUBLIC_DBTOOLS inline double toNullDate(const ::com::sun::star::util::Date& _rNullDate, double _rVal) { return _rVal - toDays(_rNullDate); }
+ inline double toNullDate(const ::com::sun::star::util::Date& _rNullDate, double _rVal) { return _rVal - toDays(_rNullDate); }
// return the date from the numberformatsupplier or the STANDARD_DATE (1900,1,1)
OOO_DLLPUBLIC_DBTOOLS ::com::sun::star::util::Date getNULLDate(const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier > &xSupplier);