From bc6cd6fa8586ca0d059961719a6a61df5e063971 Mon Sep 17 00:00:00 2001 From: Zack Rusin Date: Sat, 15 Feb 2003 17:19:27 +0000 Subject: Bad Alex. --- ChangeLog | 4 ++++ qt/dbus-qthread.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6c5517b6..a99e690f 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 840f16e2..f85d61e9 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; } -- cgit