Don't use nullprt for a dialog's parent.
Fixes: lp:1791561
* https://bugs.launchpad.net/kicad/+bug/1791561
(cherry picked from commit 3f23e9ac46
)
This commit is contained in:
parent
036288d18f
commit
1e223b9027
|
@ -171,7 +171,7 @@ PART_LIBS* PROJECT::SchLibs()
|
|||
catch( const PARSE_ERROR& pe )
|
||||
{
|
||||
wxString lib_list = UTF8( pe.inputLine );
|
||||
wxWindow* parent = 0; // Pgm().App().GetTopWindow();
|
||||
wxWindow* parent = Pgm().App().GetTopWindow();
|
||||
|
||||
// parent of this dialog cannot be NULL since that breaks the Kiway() chain.
|
||||
HTML_MESSAGE_BOX dlg( parent, _( "Not Found" ) );
|
||||
|
@ -186,7 +186,9 @@ PART_LIBS* PROJECT::SchLibs()
|
|||
}
|
||||
catch( const IO_ERROR& ioe )
|
||||
{
|
||||
DisplayError( NULL, ioe.What() );
|
||||
wxWindow* parent = Pgm().App().GetTopWindow();
|
||||
|
||||
DisplayError( parent, ioe.What() );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue