summaryrefslogtreecommitdiffstats
path: root/include/tools/date.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-23 09:07:12 +0200
committerNoel Grandin <noel@peralex.com>2015-10-23 10:48:50 +0200
commitc06e2fcc2c03c4b6353bd9a1e282c36de872d777 (patch)
tree69cdc7e4bf9d658b108d2a71a8d9ed41c518ed0d /include/tools/date.hxx
parentResolves: tdf#76964 fall back to primary language via getLanguage (diff)
downloadcore-c06e2fcc2c03c4b6353bd9a1e282c36de872d777.tar.gz
core-c06e2fcc2c03c4b6353bd9a1e282c36de872d777.zip
com::sun::star->css in include/sot to include/typelib
Change-Id: I9cd92b53370a6b6018d2f7c648890f9c014a27de
Diffstat (limited to 'include/tools/date.hxx')
-rw-r--r--include/tools/date.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tools/date.hxx b/include/tools/date.hxx
index 0fc4109c42f7..22cec9abf78f 100644
--- a/include/tools/date.hxx
+++ b/include/tools/date.hxx
@@ -57,16 +57,16 @@ public:
{ nDate = rDate.nDate; }
Date( sal_uInt16 nDay, sal_uInt16 nMonth, sal_uInt16 nYear )
{ init(nDay, nMonth, nYear); }
- Date( const ::com::sun::star::util::Date& _rDate )
+ Date( const css::util::Date& _rDate )
{
SAL_WARN_IF(_rDate.Year < 0, "tools.datetime", "Negative year in css::util::Date to ::Date conversion");
init(_rDate.Day, _rDate.Month, _rDate.Year);
}
- Date( const ::com::sun::star::util::DateTime& _rDateTime );
+ Date( const css::util::DateTime& _rDateTime );
void SetDate( sal_uInt32 nNewDate ) { nDate = nNewDate; }
sal_uInt32 GetDate() const { return nDate; }
- ::com::sun::star::util::Date GetUNODate() const { return ::com::sun::star::util::Date(GetDay(), GetMonth(), GetYear()); }
+ css::util::Date GetUNODate() const { return css::util::Date(GetDay(), GetMonth(), GetYear()); }
void SetDay( sal_uInt16 nNewDay );
void SetMonth( sal_uInt16 nNewMonth );