From: Zack Rusin Date: Sat, 15 Feb 2003 17:19:27 +0000 (+0000) Subject: Bad Alex. X-Git-Tag: dbus-0.4~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc6cd6fa8586ca0d059961719a6a61df5e063971;p=thirdparty%2Fdbus.git Bad Alex. --- diff --git a/ChangeLog b/ChangeLog index 6c5517b68..a99e690f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-02-15 Zack Rusin + + * qt/dbus-qthread.cpp: small casting fix + 2003-02-15 Anders Carlsson * dbus/dbus-errors.c: (dbus_set_error): diff --git a/qt/dbus-qthread.cpp b/qt/dbus-qthread.cpp index 840f16e27..f85d61e9e 100644 --- a/qt/dbus-qthread.cpp +++ b/qt/dbus-qthread.cpp @@ -108,7 +108,7 @@ dbus_qcondvar_new (void) static void dbus_qcondvar_free (DBusCondVar *cond) { - QWaitCondition *cqond = static_cast(mutex); + QWaitCondition *qcond = static_cast(cond); delete qcond; }