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-fix-svg.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-fix-svg.patch')
-rw-r--r-- | mandriva/2010.2/other/ksplash-engine-moodin/moodin-fix-svg.patch | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/mandriva/2010.2/other/ksplash-engine-moodin/moodin-fix-svg.patch b/mandriva/2010.2/other/ksplash-engine-moodin/moodin-fix-svg.patch new file mode 100644 index 000000000..7a252adc6 --- /dev/null +++ b/mandriva/2010.2/other/ksplash-engine-moodin/moodin-fix-svg.patch @@ -0,0 +1,67 @@ +--- moodin/src/scaler.cpp-- 2007-02-14 15:22:06.000000000 +0100 ++++ moodin/src/scaler.cpp 2007-02-14 15:22:16.000000000 +0100 +@@ -15,7 +15,16 @@ + + Scaler::Scaler(QSize baseResolution, QSize targetResolution) + { +- mBaseResolution = baseResolution; ++ if(mBaseResolution.isValid()) ++ { ++ mBaseResolution = baseResolution; ++ mSvgFile =false; ++ } ++ else ++ { ++ mBaseResolution = targetResolution; ++ mSvgFile = true; ++ } + mTargetResolution = targetResolution; + } + +@@ -44,7 +53,7 @@ + + void Scaler::scaleCoords(QPoint* pt) + { +- if (mBaseResolution == mTargetResolution) ++ if (!mSvgFile && (mBaseResolution == mTargetResolution)) + return; + + int ox = pt->x(); +@@ -95,7 +104,7 @@ + + bool Scaler::resolutionDiff() + { +- return (mBaseResolution != mTargetResolution); ++ return (mSvgFile || (mBaseResolution != mTargetResolution)); + } + + +--- moodin/src/scaler.h-- 2007-02-14 15:22:09.000000000 +0100 ++++ moodin/src/scaler.h 2007-02-14 15:22:20.000000000 +0100 +@@ -21,6 +21,7 @@ + private: + QSize mBaseResolution; + QSize mTargetResolution; ++ bool mSvgFile; + + public: + Scaler(QSize baseResolution, QSize targetResolution); +--- moodin/src/thememoodin.cpp-- 2007-02-14 15:23:53.000000000 +0100 ++++ moodin/src/thememoodin.cpp 2007-02-14 15:24:40.000000000 +0100 +@@ -88,7 +88,7 @@ + mBaseResolution = cfg->readSizeEntry("BaseResolution", &size); + //For svg image use a negative size => force to create it. + if(!mUsersBackground && (mBackgroundImage.endsWith(".svg") || mBackgroundImage.endsWith(".svgz"))) { +- mBaseResolution=QSize(-1,-1); ++ mBaseResolution=QSize(); + } + + mTranslate = cfg->readBoolEntry("Translate", true); +@@ -248,7 +248,6 @@ + else + { + QString name = mTheme->locateThemeData(*it); +- + if (name.isEmpty()) + continue; + |