0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-09-30 11:12:34 +03:00

Merge pull request #64 from asmaloney/fix-mem-leak

Fix a memory leak in PageDesignIntf::copy()
This commit is contained in:
fralx
2017-04-10 10:57:25 +03:00
committed by GitHub

View File

@@ -1226,6 +1226,8 @@ void PageDesignIntf::copy()
if (shouldWrite) {
clipboard->setText(writer->saveToString());
}
delete writer;
}
}