diff options
author | Tim Williams <tmw@autotrain.org> | 2011-10-17 18:47:27 +0100 |
---|---|---|
committer | Tim Williams <tmw@autotrain.org> | 2011-10-17 18:47:27 +0100 |
commit | 76ef832ce5348d12a871223d4c034c7daeaddb82 (patch) | |
tree | 7024a1f39a6114daa8c5ed24bb31a8687c832b9a /mandriva/2010.2/other/ksplash-engine-moodin/moodin-0.4.2-memleak-bug.patch | |
parent | ec2515f058c60d2478a549f58376db628ba556b9 (diff) | |
download | tde-packaging-76ef832ce5348d12a871223d4c034c7daeaddb82.tar.gz tde-packaging-76ef832ce5348d12a871223d4c034c7daeaddb82.zip |
Adding the remaining Mandriva patches and spec files
Diffstat (limited to 'mandriva/2010.2/other/ksplash-engine-moodin/moodin-0.4.2-memleak-bug.patch')
-rw-r--r-- | mandriva/2010.2/other/ksplash-engine-moodin/moodin-0.4.2-memleak-bug.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mandriva/2010.2/other/ksplash-engine-moodin/moodin-0.4.2-memleak-bug.patch b/mandriva/2010.2/other/ksplash-engine-moodin/moodin-0.4.2-memleak-bug.patch new file mode 100644 index 000000000..ae750fbb8 --- /dev/null +++ b/mandriva/2010.2/other/ksplash-engine-moodin/moodin-0.4.2-memleak-bug.patch @@ -0,0 +1,15 @@ +--- moodin/src/thememoodin.cpp-- 2007-01-26 14:56:48.000000000 +0100 ++++ moodin/src/thememoodin.cpp 2007-01-26 14:57:20.000000000 +0100 +@@ -81,8 +81,10 @@ + mImageSpacer = cfg->readNumEntry("ImageSpacer", mUseIconSet ? mIconSetSize : 0); + mUsersBackground = cfg->readBoolEntry("UsersBackground", false); + mLabelCount = cfg->readNumEntry("Labels", 0); +- mLabelShadowOffset = cfg->readPointEntry("LabelShadowOffset", new QPoint(2, 2)); +- mBaseResolution = cfg->readSizeEntry("BaseResolution", new QSize(1280, 1024)); ++ QPoint pos(2,2); ++ mLabelShadowOffset = cfg->readPointEntry("LabelShadowOffset", &pos); ++ QSize size(1280, 1024); ++ mBaseResolution = cfg->readSizeEntry("BaseResolution", &size); + mTranslate = cfg->readBoolEntry("Translate", true); + mLineUpImages = cfg->readBoolEntry("LineUpImages", false); + |