diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-11-16 16:35:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-11-16 16:36:41 +0000 |
commit | f684c33c9188937c1665b428e705e0ef1673cb11 (patch) | |
tree | 839fc9a5c7441c523e50845507c15c389713aeee /svx | |
parent | 77fe96d43477ddc5a4a24900c9e767dd93ec0e54 (diff) |
fix crashing search/replace dialog
Overenthuastic chainsawing from 7776ebfa63cec652131e2be61e2dc198648770db
removed pWindow = LAYOUT_THIS_WINDOW (dialog)
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/srchdlg.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx index 14aba87ecc2a..a885b92e0586 100644 --- a/svx/source/dialog/srchdlg.cxx +++ b/svx/source/dialog/srchdlg.cxx @@ -2484,6 +2484,7 @@ SvxSearchDialogWrapper::SvxSearchDialogWrapper( Window* _pParent, sal_uInt16 nId : SfxChildWindow( _pParent, nId ) , dialog (new SvxSearchDialog (_pParent, this, *pBindings)) { + pWindow = dialog; dialog->Initialize( pInfo ); pBindings->Update( SID_SEARCH_ITEM ); |