diff options
Diffstat (limited to 'devel/dbus-qt3/files/patch-integrator.cpp')
-rw-r--r-- | devel/dbus-qt3/files/patch-integrator.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/dbus-qt3/files/patch-integrator.cpp b/devel/dbus-qt3/files/patch-integrator.cpp deleted file mode 100644 index cc833f7ebe64..000000000000 --- a/devel/dbus-qt3/files/patch-integrator.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- integrator.cpp.orig 2008-05-30 00:12:59.000000000 +0400 -+++ integrator.cpp 2008-05-30 00:15:20.000000000 +0400 -@@ -190,7 +190,7 @@ - qtwatch->watch = watch; - - int flags = dbus_watch_get_flags( watch ); -- int fd = dbus_watch_get_fd( watch ); -+ int fd = dbus_watch_get_unix_fd( watch ); - - if ( flags & DBUS_WATCH_READABLE ) { - qtwatch->readSocket = new QSocketNotifier( fd, QSocketNotifier::Read, this ); -@@ -207,7 +207,7 @@ - - void Integrator::removeWatch( DBusWatch *watch ) - { -- int key = dbus_watch_get_fd( watch ); -+ int key = dbus_watch_get_unix_fd( watch ); - - Watch *qtwatch = m_watches.take( key ); - |