diff options
author | Timothy Pearson <[email protected]> | 2011-08-13 12:21:22 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-08-13 12:21:22 -0500 |
commit | f65bcb8326e06816d7dc49e58bda120182dbbcd6 (patch) | |
tree | 4e7fef001fc523929450778d10c86b41e6e32eda /opensuse/tdelibs/limit-max-image-size.diff | |
parent | 131df957b41b4683571b1e36e6fed9d614d32356 (diff) | |
parent | fa41f32b69994ecd75b7359fa2df08ea5a3480ab (diff) | |
download | tde-packaging-f65bcb8326e06816d7dc49e58bda120182dbbcd6.tar.gz tde-packaging-f65bcb8326e06816d7dc49e58bda120182dbbcd6.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tde-packaging
Diffstat (limited to 'opensuse/tdelibs/limit-max-image-size.diff')
-rw-r--r-- | opensuse/tdelibs/limit-max-image-size.diff | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/opensuse/tdelibs/limit-max-image-size.diff b/opensuse/tdelibs/limit-max-image-size.diff new file mode 100644 index 000000000..6a01bf063 --- /dev/null +++ b/opensuse/tdelibs/limit-max-image-size.diff @@ -0,0 +1,28 @@ +Index: kapplication.cpp +=================================================================== +RCS file: /home/kde/kdelibs/kdecore/kapplication.cpp,v +retrieving revision 1.670 +diff -u -p -r1.670 kapplication.cpp +--- kdecore/kapplication.cpp 22 Jul 2004 16:50:04 -0000 1.670 ++++ kdecore/kapplication.cpp 16 Aug 2004 20:31:02 -0000 +@@ -43,6 +43,7 @@ + #include <qtooltip.h> + #include <qstylefactory.h> + #include <qmetaobject.h> ++#include <qimage.h> + #ifndef QT_NO_SQL + #include <qsqlpropertymap.h> + #endif +@@ -1975,6 +1976,12 @@ void KApplication::propagateSettings(Set + KConfigBase* config = KGlobal::config(); + KConfigGroupSaver saver( config, "KDE" ); + ++#ifdef QT_HAVE_MAX_IMAGE_SIZE ++ QSize maxImageSize(4096, 4096); ++ maxImageSize = config->readSizeEntry("MaxImageSize", &maxImageSize); ++ QImage::setMaxImageSize(maxImageSize); ++#endif ++ + int num = config->readNumEntry("CursorBlinkRate", QApplication::cursorFlashTime()); + if ((num != 0) && (num < 200)) + num = 200; |