summaryrefslogtreecommitdiffstats
path: root/opensuse/core/qt3/shut-up.diff
diff options
context:
space:
mode:
authorRobert Xu <[email protected]>2012-02-01 00:31:59 -0500
committerRobert Xu <[email protected]>2012-02-01 00:31:59 -0500
commitf599f39717d771b8b7a2aff006cda6c31e8b12da (patch)
treef601e3c0303a193cda6f8c6f956619dda9673c70 /opensuse/core/qt3/shut-up.diff
parentead369ac94473139a2320a1c90cda64dd887b94a (diff)
parent27c9e783c6283f8916ebee3a23c6d1ba909a5126 (diff)
downloadtde-packaging-f599f39717d771b8b7a2aff006cda6c31e8b12da.tar.gz
tde-packaging-f599f39717d771b8b7a2aff006cda6c31e8b12da.zip
Merge branch 'suse'
Diffstat (limited to 'opensuse/core/qt3/shut-up.diff')
-rw-r--r--opensuse/core/qt3/shut-up.diff45
1 files changed, 45 insertions, 0 deletions
diff --git a/opensuse/core/qt3/shut-up.diff b/opensuse/core/qt3/shut-up.diff
new file mode 100644
index 000000000..498b25b62
--- /dev/null
+++ b/opensuse/core/qt3/shut-up.diff
@@ -0,0 +1,45 @@
+--- src/kernel/qpixmap_x11.cpp
++++ src/kernel/qpixmap_x11.cpp
+@@ -394,8 +394,9 @@
+ {
+ #if defined(QT_CHECK_STATE)
+ if ( qApp->type() == QApplication::Tty ) {
+- qWarning( "QPixmap: Cannot create a QPixmap when no GUI "
+- "is being used" );
++// qWarning( "QPixmap: Cannot create a QPixmap when no GUI "
++// "is being used" );
++ ;
+ }
+ #endif
+
+--- src/tools/qcomlibrary.cpp
++++ src/tools/qcomlibrary.cpp
+@@ -105,25 +105,11 @@
+ (const char*) QFile::encodeName(library) );
+ } else if ( ( version > QT_VERSION ) ||
+ ( ( QT_VERSION & 0xff0000 ) > ( version & 0xff0000 ) ) ) {
+- if ( warn )
+- qWarning( "Conflict in %s:\n"
+- " Plugin uses incompatible Qt library (%d.%d.%d)!",
+- (const char*) QFile::encodeName(library),
+- (version&0xff0000) >> 16, (version&0xff00) >> 8, version&0xff );
++ return FALSE;
+ } else if ( (flags & 2) != (our_flags & 2) ) {
+- if ( warn )
+- qWarning( "Conflict in %s:\n"
+- " Plugin uses %s Qt library!",
+- (const char*) QFile::encodeName(library),
+- (flags & 2) ? "multi threaded" : "single threaded" );
++ return FALSE;
+ } else if ( key != QT_BUILD_KEY ) {
+- if ( warn )
+- qWarning( "Conflict in %s:\n"
+- " Plugin uses incompatible Qt library!\n"
+- " expected build key \"%s\", got \"%s\".",
+- (const char*) QFile::encodeName(library),
+- QT_BUILD_KEY,
+- key.isEmpty() ? "<null>" : (const char *) key );
++ return FALSE;
+ } else {
+ return TRUE;
+ }