mirror of https://github.com/KLayout/klayout.git
Fixed some more small memory leaks
This commit is contained in:
parent
de6e1ffd53
commit
16cd4276b7
|
|
@ -130,6 +130,9 @@ NetlistBrowserDialog::NetlistBrowserDialog (lay::Dispatcher *root, LayoutViewBas
|
|||
NetlistBrowserDialog::~NetlistBrowserDialog ()
|
||||
{
|
||||
tl::Object::detach_from_all_events ();
|
||||
|
||||
delete mp_ui;
|
||||
mp_ui = 0;
|
||||
}
|
||||
|
||||
db::LayoutToNetlist *
|
||||
|
|
|
|||
|
|
@ -143,7 +143,8 @@ SaveLayoutOptionsDialog::SaveLayoutOptionsDialog (QWidget *parent, const std::st
|
|||
|
||||
SaveLayoutOptionsDialog::~SaveLayoutOptionsDialog ()
|
||||
{
|
||||
// .. nothing yet ..
|
||||
delete mp_ui;
|
||||
mp_ui = 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -121,6 +121,9 @@ MarkerBrowserDialog::MarkerBrowserDialog (lay::Dispatcher *root, lay::LayoutView
|
|||
MarkerBrowserDialog::~MarkerBrowserDialog ()
|
||||
{
|
||||
tl::Object::detach_from_all_events ();
|
||||
|
||||
delete mp_ui;
|
||||
mp_ui = 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in New Issue