summaryrefslogtreecommitdiffstats
path: root/qt/connection.cpp
diff options
context:
space:
mode:
authorZack Rusin <zack@kde.org>2003-11-24 19:11:55 +0000
committerZack Rusin <zack@kde.org>2003-11-24 19:11:55 +0000
commit27f6dca9ce4680dbbe8dc20a862f5ad63b709609 (patch)
treef3458e7b3c5a9ad1debfc178c50df26b2f7ba380 /qt/connection.cpp
parent89d43511ec5718823d8faa98246e420af5f26d5a (diff)
As changelog says. Integration is pretty much there, so dbus should at least
use Qt for timeouts and watches comfortably now.
Diffstat (limited to 'qt/connection.cpp')
-rw-r--r--qt/connection.cpp7
1 files changed, 0 insertions, 7 deletions
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