Merge branch 'master' of git://anongit.freedesktop.org/git/dbus/dbus-c++

Merge branch 'master' of git://anongit.freedesktop.org/git/dbus/dbus-c++

Conflicts:

	include/dbus-c++/connection.h
	include/dbus-c++/dispatcher.h
	include/dbus-c++/pendingcall.h
	src/dispatcher.cpp
This commit is contained in:
Andreas Volz 2008-08-14 23:59:23 +02:00
commit c1970e2352
57 changed files with 1642 additions and 1638 deletions

View file

@ -40,17 +40,17 @@ namespace DBus {
struct DXXAPILOCAL Server::Private
{
DBusServer* server;
DBusServer *server;
Dispatcher* dispatcher;
Dispatcher *dispatcher;
ConnectionList connections;
Private( DBusServer* );
Private(DBusServer *);
~Private();
static void on_new_conn_cb( DBusServer* server, DBusConnection* conn, void* data );
static void on_new_conn_cb(DBusServer *server, DBusConnection *conn, void *data);
};
} /* namespace DBus */