diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-09-11 20:09:30 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-09-12 08:26:30 +0200 |
commit | 8232cae49bc20ddff3047c363233e85c407055aa (patch) | |
tree | 52ff428701e1f9a9bd3ac66ae2db6d1c23ba098e | |
parent | 01d7bd4f08cf05dd44b1239287451c52a965e343 (diff) |
sw: document SwFormatField
Note that SwField is abstract, so in practice this always wraps a
subclass, e.g. SwPageNumberField has an actual ExpandImpl() definition.
Change-Id: I579cc9f2f9d1f64885512bceabc2fc684b8c3701
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156828
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
-rw-r--r-- | sw/inc/fmtfld.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/inc/fmtfld.hxx b/sw/inc/fmtfld.hxx index ba23014a1f82..0c8d5fda7110 100644 --- a/sw/inc/fmtfld.hxx +++ b/sw/inc/fmtfld.hxx @@ -95,7 +95,8 @@ namespace sw { } -// ATT_FLD +/// SfxPoolItem subclass that is a wrapper around an SwField, i.e. one inserted field into paragraph +/// text. Typically owned by an SwTextField. class SW_DLLPUBLIC SwFormatField final : public SfxPoolItem , public sw::BroadcastingModify |