From 27f6dca9ce4680dbbe8dc20a862f5ad63b709609 Mon Sep 17 00:00:00 2001 From: Zack Rusin Date: Mon, 24 Nov 2003 19:11:55 +0000 Subject: As changelog says. Integration is pretty much there, so dbus should at least use Qt for timeouts and watches comfortably now. --- qt/connection.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'qt/connection.cpp') diff --git a/qt/connection.cpp b/qt/connection.cpp index 936db3eb..830987d6 100644 --- a/qt/connection.cpp +++ b/qt/connection.cpp @@ -42,23 +42,16 @@ Connection::Connection( const QString& host ) connect( d->integrator, SIGNAL(readReady()), SLOT(dispatchRead()) ); - initDbus(); - if ( !host.isEmpty() ) init( host ); } -void Connection::initDbus() -{ -} - void Connection::init( const QString& host ) { dbus_error_init( &d->error ); d->connection = dbus_connection_open( host.ascii(), &d->error ); //dbus_connection_allocate_data_slot( &d->connectionSlot ); //dbus_connection_set_data( d->connection, d->connectionSlot, 0, 0 ); - initDbus(); } bool Connection::isConnected() const -- cgit