[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - sw/source
Caolán McNamara
caolanm at redhat.com
Wed Feb 25 00:45:16 PST 2015
sw/source/core/uibase/misc/redlndlg.cxx | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
New commits:
commit a840857c2d2490ee8d1b0289df8d9bf588981c48
Author: Caolán McNamara <caolanm at redhat.com>
Date: Thu Feb 12 21:18:29 2015 +0000
Resolves: tdf#89227 if no SwView then disable accept/reject change buttons
e.g. if the context is an embedded draw ole then we don't have a SwView
(cherry picked from commit 25dd3d277e9b90a59e7b2a03202ef0cba7799b68)
Conflicts:
sw/source/uibase/misc/redlndlg.cxx
Change-Id: I6ba07f0ecf1c419e45f7e0ac628a82e6bd486668
Reviewed-on: https://gerrit.libreoffice.org/14455
Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>
Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
Tested-by: Miklos Vajna <vmiklos at collabora.co.uk>
diff --git a/sw/source/core/uibase/misc/redlndlg.cxx b/sw/source/core/uibase/misc/redlndlg.cxx
index 3a062a4..9d0e359 100644
--- a/sw/source/core/uibase/misc/redlndlg.cxx
+++ b/sw/source/core/uibase/misc/redlndlg.cxx
@@ -96,7 +96,6 @@ SwModelessRedlineAcceptDlg::SwModelessRedlineAcceptDlg(
void SwModelessRedlineAcceptDlg::Activate()
{
SwView *pView = ::GetActiveView();
-
if (!pView) // can happen when switching to another app, when a Listbox in dialog
return; // had the focus previously (actually THs Bug)
@@ -159,6 +158,7 @@ SwRedlineAcceptDlg::SwRedlineAcceptDlg(Dialog *pParent, bool bAutoFmt) :
{
aTabPagesCTRL.SetHelpId(HID_REDLINE_CTRL);
pTPView = aTabPagesCTRL.GetViewPage();
+
pTable = pTPView->GetTableControl();
pTPView->InsertWriterHeader();
@@ -167,6 +167,11 @@ SwRedlineAcceptDlg::SwRedlineAcceptDlg(Dialog *pParent, bool bAutoFmt) :
pTPView->SetRejectClickHdl(LINK(this, SwRedlineAcceptDlg, RejectHdl));
pTPView->SetRejectAllClickHdl(LINK(this, SwRedlineAcceptDlg, RejectAllHdl));
pTPView->SetUndoClickHdl(LINK(this, SwRedlineAcceptDlg, UndoHdl));
+ //tdf#89227 default to disabled, and only enable if possible to accept/reject
+ pTPView->EnableAccept(false);
+ pTPView->EnableReject(false);
+ pTPView->EnableAcceptAll(false);
+ pTPView->EnableRejectAll(false);
aTabPagesCTRL.GetFilterPage()->SetReadyHdl(LINK(this, SwRedlineAcceptDlg, FilterChangedHdl));
@@ -357,9 +362,14 @@ void SwRedlineAcceptDlg::Activate()
return;
SwView *pView = ::GetActiveView();
-
- if (!pView) // can happen when switching to another app, when a Listbox in the dialog
- return; // had the focus previously (actually THs Bug)
+ if (!pView) // can happen when switching to another app
+ {
+ pTPView->EnableAccept(false);
+ pTPView->EnableReject(false);
+ pTPView->EnableAcceptAll(false);
+ pTPView->EnableRejectAll(false);
+ return; // had the focus previously
+ }
SwWait aWait( *pView->GetDocShell(), false );
More information about the Libreoffice-commits
mailing list