diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-10-28 12:39:56 -0700 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-10-28 20:14:47 +0000 |
commit | a66bd32b78a8e88f24690452a96bf3f248bfa004 (patch) | |
tree | 1329da8810e099595914f3fdfc4dbf013233acd3 /sw/source/uibase/inc/redlndlg.hxx | |
parent | 93a007b1b02c13025b08bcefe19dd54e24e2b80f (diff) |
tdf#91270 fix crash on exit (Windows)
dynamic atexit destructor and const static variables reportedly
cause crash, let's avoid this.
Change-Id: I24234084f810854606dde9914bee1c98ebc2e3dd
Reviewed-on: https://gerrit.libreoffice.org/19656
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source/uibase/inc/redlndlg.hxx')
-rw-r--r-- | sw/source/uibase/inc/redlndlg.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sw/source/uibase/inc/redlndlg.hxx b/sw/source/uibase/inc/redlndlg.hxx index 3c7b4810f97a..7180373da52b 100644 --- a/sw/source/uibase/inc/redlndlg.hxx +++ b/sw/source/uibase/inc/redlndlg.hxx @@ -89,6 +89,13 @@ class SW_DLLPUBLIC SwRedlineAcceptDlg // prevent update dialog data during longer operations (cf #102657#) bool bInhibitActivate; + Image aInserted; + Image aDeleted; + Image aFormated; + Image aTableChgd; + Image aFormatCollSet; + Image aAutoFormat; + DECL_DLLPRIVATE_LINK_TYPED( AcceptHdl, SvxTPView*, void ); DECL_DLLPRIVATE_LINK_TYPED( AcceptAllHdl, SvxTPView*, void ); DECL_DLLPRIVATE_LINK_TYPED( RejectHdl, SvxTPView*, void ); |