diff options
author | Justin Luth <justin.luth@collabora.com> | 2023-04-28 13:38:13 -0400 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-05-02 15:36:07 +0200 |
commit | 751cb2cf874a2d017cae699a7983e4419dcbe6f6 (patch) | |
tree | c81f96ce07be80622020519221352a983fea4562 /sw/inc | |
parent | 453af38f46ad4c2eb3125b8d2967c91b950b3c50 (diff) |
tdf#86630 sw page number wizard: add page total
1 - 3 is the format of the output.
Not totally clear, but it is at least not in English,
and I'm fairly certain I've seen this format used numerous times.
At least everything is there, and all the user needs to do is
modify the - to be whatever they want.
I checked to see if by some miracle localedata had a specification
for "X of Y" but it doesn't.
Change-Id: Iae1e74e612ec449f72086b3f5a5e32713fee4d27
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151173
Tested-by: Jenkins
Reviewed-by: Justin Luth <jluth@mail.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/swabstdlg.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/inc/swabstdlg.hxx b/sw/inc/swabstdlg.hxx index 49eefef5e4a3..fe6bab309ef9 100644 --- a/sw/inc/swabstdlg.hxx +++ b/sw/inc/swabstdlg.hxx @@ -239,6 +239,7 @@ public: virtual int GetPageNumberPosition() const = 0; virtual int GetPageNumberAlignment() const = 0; virtual bool GetMirrorOnEvenPages() const = 0; + virtual bool GetIncludePageTotal() const = 0; virtual SvxNumType GetPageNumberType() const = 0; virtual void SetPageNumberType(SvxNumType nSet) = 0; }; |