diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2009-05-19 11:35:58 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2009-05-19 11:35:58 (GMT) |
commit | a903f9fb54f7192795abffca0a99b54d419bdb7a (patch) | |
tree | 33047cda8b3b7ac13ce7576c8da530f8997266ad | |
parent | 8ef2feacb26eabdc6e82c4a85b6f3e30665477ba (diff) | |
download | Qt-a903f9fb54f7192795abffca0a99b54d419bdb7a.zip Qt-a903f9fb54f7192795abffca0a99b54d419bdb7a.tar.gz Qt-a903f9fb54f7192795abffca0a99b54d419bdb7a.tar.bz2 |
Removed memory leak in QEasingCurvePrivate
Task-number: 253898
-rw-r--r-- | src/corelib/tools/qeasingcurve.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/corelib/tools/qeasingcurve.cpp b/src/corelib/tools/qeasingcurve.cpp index 72965de5..9ef9149 100644 --- a/src/corelib/tools/qeasingcurve.cpp +++ b/src/corelib/tools/qeasingcurve.cpp @@ -354,6 +354,7 @@ public: config(0), func(&easeNone) { } + ~QEasingCurvePrivate() { delete config; } void setType_helper(QEasingCurve::Type); QEasingCurve::Type type; |