mirror of https://github.com/KLayout/klayout.git
More memory leaks fixed
This commit is contained in:
parent
2cd932627c
commit
1ad7dc0d98
|
|
@ -182,6 +182,12 @@ NetlistBrowserConfigPage2::NetlistBrowserConfigPage2 (QWidget *parent)
|
|||
}
|
||||
}
|
||||
|
||||
NetlistBrowserConfigPage2::~NetlistBrowserConfigPage2 ()
|
||||
{
|
||||
delete mp_ui;
|
||||
mp_ui = 0;
|
||||
}
|
||||
|
||||
void
|
||||
NetlistBrowserConfigPage2::color_button_clicked ()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -73,6 +73,7 @@ class NetlistBrowserConfigPage2
|
|||
|
||||
public:
|
||||
NetlistBrowserConfigPage2 (QWidget *parent);
|
||||
~NetlistBrowserConfigPage2 ();
|
||||
|
||||
virtual void setup (lay::Dispatcher *root);
|
||||
virtual void commit (lay::Dispatcher *root);
|
||||
|
|
|
|||
|
|
@ -398,7 +398,8 @@ SaveLayoutAsOptionsDialog::SaveLayoutAsOptionsDialog (QWidget *parent, const std
|
|||
|
||||
SaveLayoutAsOptionsDialog::~SaveLayoutAsOptionsDialog ()
|
||||
{
|
||||
// .. nothing yet ..
|
||||
delete mp_ui;
|
||||
mp_ui = 0;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in New Issue