diff options
author | Oliver Specht <os@openoffice.org> | 2002-11-13 08:20:18 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2002-11-13 08:20:18 +0000 |
commit | a79dd66ab5006980c3bc145aa704efcf1ff5a8a0 (patch) | |
tree | 803c53a05278267db95265270467568bffe79382 /sw/source/ui/shells/textfld.cxx | |
parent | c9fb40be5b6898cf1f954abc50fcbfac44e4804e (diff) |
#105031# Insert/Field/Author inserts docinfo-created field instead of user name field
Diffstat (limited to 'sw/source/ui/shells/textfld.cxx')
-rw-r--r-- | sw/source/ui/shells/textfld.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/ui/shells/textfld.cxx b/sw/source/ui/shells/textfld.cxx index 892d0c184534..93a42c0dfcf1 100644 --- a/sw/source/ui/shells/textfld.cxx +++ b/sw/source/ui/shells/textfld.cxx @@ -2,9 +2,9 @@ * * $RCSfile: textfld.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: os $ $Date: 2002-08-29 09:11:05 $ + * last change: $Author: os $ $Date: 2002-11-13 09:20:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -682,7 +682,8 @@ void SwTextShell::ExecField(SfxRequest &rReq) nInsertSubType = DI_TITEL; goto FIELD_INSERT; case FN_INSERT_FLD_AUTHOR : - nInsertType = TYP_AUTHORFLD; + nInsertType = TYP_DOCINFOFLD; + nInsertSubType = DI_CREATE|DI_SUB_AUTHOR; FIELD_INSERT: { |