summaryrefslogtreecommitdiffstats
path: root/opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch
diff options
context:
space:
mode:
authorRobert Xu <robxu9@gmail.com>2011-11-10 18:04:39 -0500
committerRobert Xu <robxu9@gmail.com>2011-11-10 18:04:39 -0500
commit21fcfa3348213aa87f0e3aef62ca4720c6d31cb7 (patch)
tree2cfb64c59322628e613ed0895e3c3694d3abe6bd /opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch
parent8667643bff14a60d8571c599efd3e48bed3e3b12 (diff)
downloadtde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.tar.gz
tde-packaging-21fcfa3348213aa87f0e3aef62ca4720c6d31cb7.zip
initial commit to suse branch: eclipse integration
Diffstat (limited to 'opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch')
-rw-r--r--opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch85
1 files changed, 0 insertions, 85 deletions
diff --git a/opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch b/opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch
deleted file mode 100644
index 00b8b6026..000000000
--- a/opensuse/libdbus-tqt-1-0/dbus-qt3-compile-fix-thoenig-01.patch
+++ /dev/null
@@ -1,85 +0,0 @@
---- dbus-qt3/connection.cpp 2005-04-18 05:19:17.000000000 -0600
-+++ dbus-qt3/connection.cpp 2005-04-19 14:35:07.000000000 -0600
-@@ -154,6 +154,7 @@
-
- void* Connection::virtual_hook( int, void* )
- {
-+ return (void *)NULL;
- }
-
- void Connection::dbus_connection_setup_with_qt_main (DBusConnection *connection)
---- dbus-qt3/message.cpp 2005-04-18 05:19:17.000000000 -0600
-+++ dbus-qt3/message.cpp 2005-04-19 14:55:32.000000000 -0600
-@@ -359,6 +359,7 @@
- Message Message::operator=( const Message& other )
- {
- //FIXME: ref the other.d->msg instead of copying it?
-+ return (Message &)(d->msg);
- }
- /**
- * Destructs message.
-@@ -508,42 +509,49 @@
- const dbus_bool_t right_size_bool = b;
- dbus_message_append_args( d->msg, DBUS_TYPE_BOOLEAN, &right_size_bool,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( Q_INT8 byte )
- {
- dbus_message_append_args( d->msg, DBUS_TYPE_BYTE, &byte,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( Q_INT32 num )
- {
- dbus_message_append_args( d->msg, DBUS_TYPE_INT32, &num,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( Q_UINT32 num )
- {
- dbus_message_append_args( d->msg, DBUS_TYPE_UINT32, &num,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( Q_INT64 num )
- {
- dbus_message_append_args( d->msg, DBUS_TYPE_INT64, &num,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( Q_UINT64 num )
- {
- dbus_message_append_args( d->msg, DBUS_TYPE_UINT64, &num,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( double num )
- {
- dbus_message_append_args( d->msg, DBUS_TYPE_DOUBLE, &num,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( const QString& str )
-@@ -551,11 +559,13 @@
- const char *u = str.utf8();
- dbus_message_append_args( d->msg, DBUS_TYPE_STRING, &u,
- DBUS_TYPE_INVALID );
-+ return (Message &)(d->msg);
- }
-
- Message& Message::operator<<( const QVariant& custom )
- {
- //FIXME: imeplement
-+ return (Message &)(d->msg);
- }
-
- }
-