diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-09-01 09:26:49 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-09-01 10:06:20 +0200 |
commit | 813a8944bdb337a0018208381aa30118151872ff (patch) | |
tree | 4a38bb8cd92a4e5e58f90a41750c94e0772bc538 /sfx2 | |
parent | 705574be7ab3425ce7e43b38771b4f7e1b246f27 (diff) |
sfx2: SfxCommonTemplateDialog_Impl can't even decide if...
...no family selection should be represented as "0" or "0xffff".
Change-Id: I08ef69bf35d130898cb995463dc29e72a372562c
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index 4aca5b74dc5e..15859ef10183 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -653,7 +653,7 @@ namespace SfxTemplate case SfxStyleFamily::Page: return 4; case SfxStyleFamily::Pseudo: return 5; case SfxStyleFamily::Table: return 6; - default: return 0; + default: return 0xffff; } } |