mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-15 14:19:04 +08:00
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
--- branches/KDE/4.5/kdebase/runtime/kioslave/network/network/builder/upnp/upnpnetworkbuilder.cpp 2010/08/08 00:40:00 1160390
|
|
+++ branches/KDE/4.5/kdebase/runtime/kioslave/network/network/builder/upnp/upnpnetworkbuilder.cpp 2010/08/08 00:41:23 1160391
|
|
@@ -36,6 +36,7 @@
|
|
#include <QtDBus/QDBusConnection>
|
|
#include <QtDBus/QDBusInterface>
|
|
#include <QtDBus/QDBusPendingCallWatcher>
|
|
+#include <QtCore/QTimer>
|
|
#include <QtCore/QStringList>
|
|
|
|
#include <KDebug>
|
|
@@ -60,6 +61,11 @@
|
|
|
|
void UpnpNetworkBuilder::start()
|
|
{
|
|
+ QTimer::singleShot(0, this, SLOT(startBrowse()));
|
|
+}
|
|
+
|
|
+void UpnpNetworkBuilder::startBrowse()
|
|
+{
|
|
qDBusRegisterMetaType<DeviceTypeMap>();
|
|
qDBusRegisterMetaType<Cagibi::Device>();
|
|
|
|
--- branches/KDE/4.5/kdebase/runtime/kioslave/network/network/builder/upnp/upnpnetworkbuilder.h 2010/08/08 00:40:00 1160390
|
|
+++ branches/KDE/4.5/kdebase/runtime/kioslave/network/network/builder/upnp/upnpnetworkbuilder.h 2010/08/08 00:41:23 1160391
|
|
@@ -63,6 +63,8 @@
|
|
void removeUPnPDevices( const QList<Cagibi::Device>& devices );
|
|
|
|
private Q_SLOTS:
|
|
+ void startBrowse();
|
|
+
|
|
void onDevicesAdded( const DeviceTypeMap& deviceTypeMap );
|
|
void onDevicesRemoved( const DeviceTypeMap& deviceTypeMap );
|
|
void onAddedDeviceDetails( const Cagibi::Device& device );
|