summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-02-18 19:03:48 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-02-18 21:50:35 +0100
commit76aea63d8055e9bb8d2edc85a739c9a48a7f8d96 (patch)
tree8d349ead13f4743341dd2c12e1528e19d6a81a5e
parent3ed222f6497cf6b2b54d90a4de80fe2db9130f59 (diff)
uitest: call base class Activate in modeless dialogs
Change-Id: I342e925a5dbc178962f720f1efc9ee001d235718 Reviewed-on: https://gerrit.libreoffice.org/49941 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--svx/source/dialog/srchdlg.cxx2
-rw-r--r--sw/source/uibase/misc/redlndlg.cxx2
2 files changed, 4 insertions, 0 deletions
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx
index b9075133bad0..6a0701bb1aa0 100644
--- a/svx/source/dialog/srchdlg.cxx
+++ b/svx/source/dialog/srchdlg.cxx
@@ -614,6 +614,8 @@ void SvxSearchDialog::Activate()
m_pMatchCaseCB->Check( pSearchItem->GetExact() );
m_pJapMatchFullHalfWidthCB->Check( !pSearchItem->IsMatchFullHalfWidthForms() );
}
+
+ SfxModelessDialog::Activate();
}
diff --git a/sw/source/uibase/misc/redlndlg.cxx b/sw/source/uibase/misc/redlndlg.cxx
index 05a9aa77265f..3ac0dbd537aa 100644
--- a/sw/source/uibase/misc/redlndlg.cxx
+++ b/sw/source/uibase/misc/redlndlg.cxx
@@ -112,10 +112,12 @@ void SwModelessRedlineAcceptDlg::Activate()
if (!bMod)
pSh->ResetModified();
pImplDlg->Init();
+ SfxModelessDialog::Activate();
return;
}
+ SfxModelessDialog::Activate();
pImplDlg->Activate();
}