summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/objuno.cxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2001-01-18 09:43:14 +0000
committerMathias Bauer <mba@openoffice.org>2001-01-18 09:43:14 +0000
commitf56f261e72214f1e3f5092b44a4394b411a96d08 (patch)
tree3ecd37abf911f75c6be5fc4e4d34768ead8e25d8 /sfx2/source/doc/objuno.cxx
parent4b50351d54c7d56ae8ca7955985aff0c6ab6e19e (diff)
#79326#: setting the TemplateDate implemented
Diffstat (limited to 'sfx2/source/doc/objuno.cxx')
-rw-r--r--sfx2/source/doc/objuno.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/sfx2/source/doc/objuno.cxx b/sfx2/source/doc/objuno.cxx
index 4b137059a23c..e11901c251a2 100644
--- a/sfx2/source/doc/objuno.cxx
+++ b/sfx2/source/doc/objuno.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: objuno.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: dv $ $Date: 2000-12-07 10:11:03 $
+ * last change: $Author: mba $ $Date: 2001-01-18 10:43:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -514,6 +514,13 @@ void SAL_CALL SfxDocumentInfoObject::setFastPropertyValue(sal_Int32 nHandle, co
_pInfo->SetPrinted( SfxStamp( rStamp.GetName(), impl_DateTime_Struct2Object(aDateTime) ) );
break;
}
+ case MID_DOCINFO_TEMPLATEDATE :
+ {
+ ::com::sun::star::util::DateTime aDateTime ;
+ aValue >>= aDateTime ;
+ _pInfo->SetTemplateDate( impl_DateTime_Struct2Object(aDateTime) );
+ break;
+ }
default:
bModified = sal_False;
break;