mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-09 15:40:22 +01:00
* qt/qdbusintegrator.cpp: Work around g++ 3.3 bug.
Patch by Stefan Eilers. (r529537)
This commit is contained in:
parent
788a8967a1
commit
d371f6fa44
2 changed files with 9 additions and 4 deletions
|
|
@ -1,9 +1,14 @@
|
|||
2006-04-13 Thiago Macieira <thiago.macieira@trolltech.com
|
||||
2006-04-13 Thiago Macieira <thiago.macieira@trolltech.com>
|
||||
|
||||
* qt/qdbusintegrator.cpp: Work around g++ 3.3 bug.
|
||||
Patch by Stefan Eilers. (r529537)
|
||||
|
||||
2006-04-13 Thiago Macieira <thiago.macieira@trolltech.com>
|
||||
|
||||
* qt/qdbusinternalfilters.cpp: Don't show the parent's
|
||||
contents (r528208)
|
||||
|
||||
2006-04-10 Thiago Macieira <thiago.macieira@trolltech.com
|
||||
2006-04-10 Thiago Macieira <thiago.macieira@trolltech.com>
|
||||
|
||||
* qt/Makefile.am: fix the dependency for
|
||||
qdbusconnection_p.moc. It's included in qdbusintegrator.cpp,
|
||||
|
|
|
|||
|
|
@ -1221,12 +1221,12 @@ void QDBusConnectionPrivate::setConnection(DBusConnection *dbc)
|
|||
//qDebug("base service: %s", service);
|
||||
}
|
||||
|
||||
extern "C"
|
||||
extern "C"{
|
||||
static void qDBusResultReceived(DBusPendingCall *pending, void *user_data)
|
||||
{
|
||||
QDBusConnectionPrivate::messageResultReceived(pending, user_data);
|
||||
}
|
||||
|
||||
}
|
||||
void QDBusConnectionPrivate::messageResultReceived(DBusPendingCall *pending, void *user_data)
|
||||
{
|
||||
QDBusPendingCall *call = reinterpret_cast<QDBusPendingCall *>(user_data);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue