diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-08-08 14:34:30 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-08-08 14:36:40 +0200 |
commit | c981b302dcd818eb212d666490156c628c7771c0 (patch) | |
tree | 1284976a297b85eeee2b36931c89ffca9f3760b0 /sw/inc/docufld.hxx | |
parent | f71f962af74ceceb51c6ada5ea616c7cff576c2b (diff) |
add SwPostItField::GetDateTime()
it's rather weird to have only access to either date or time, but
not the whole object
Diffstat (limited to 'sw/inc/docufld.hxx')
-rw-r--r-- | sw/inc/docufld.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/inc/docufld.hxx b/sw/inc/docufld.hxx index e920fc443f96..e9bd890cde6f 100644 --- a/sw/inc/docufld.hxx +++ b/sw/inc/docufld.hxx @@ -532,6 +532,7 @@ public: virtual String Expand() const; virtual SwField* Copy() const; + inline const DateTime GetDateTime() const { return aDateTime; } inline const Date GetDate() const { return aDateTime.GetDate(); } inline const Time GetTime() const { return aDateTime.GetTime(); } |