mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Fix memory leak
This commit is contained in:
parent
43b16548b4
commit
b3be47765b
@ -343,6 +343,12 @@ GuiAbout::GuiAbout(GuiView & lv)
|
||||
}
|
||||
|
||||
|
||||
GuiAbout::~GuiAbout()
|
||||
{
|
||||
delete d;
|
||||
}
|
||||
|
||||
|
||||
void GuiAbout::on_buttonBox_rejected()
|
||||
{
|
||||
close();
|
||||
|
@ -24,6 +24,7 @@ class GuiAbout : public DialogView
|
||||
public:
|
||||
// Constructor
|
||||
GuiAbout(GuiView & lv);
|
||||
~GuiAbout();
|
||||
|
||||
private Q_SLOTS:
|
||||
void on_buttonBox_rejected();
|
||||
|
Loading…
Reference in New Issue
Block a user