Fix memery leak of QXlsx::Cell

This commit is contained in:
Debao Zhang
2013-10-28 13:52:44 +08:00
parent 3fefbb2235
commit 5adda5735a
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -57,12 +57,12 @@ public:
bool isDateTime() const;
QDateTime dateTime() const;
~Cell();
private:
friend class Worksheet;
friend class WorksheetPrivate;
Cell(const QVariant &data=QVariant(), DataType type=Blank, Format *format=0, Worksheet *parent=0);
CellPrivate * const d_ptr;
};