Hmm.

The applet here
  
http://lxr.kde.org/source/playground/base/plasma/applets/networkmanager/applet/connectionlist.cpp#070
067 bool ConnectionList::assessConnections(NetworkManagerSettings * service)
068 {
069     bool added = false;
070     if (service->isValid()) {
071         //kDebug() << service->objectName() << "has connections" << 
service->connections();
072         foreach (QString connectionPath, service->connections() ) {
073             added |= processConnection(service, connectionPath);
074         }
075     }
076     if (added) {
077         emit connectionListUpdated();
078     }
079     return added;
080 }

calls Qt here
http://lxr.kde.org/source/qt-copy/src/dbus/qdbusabstractinterface.cpp#301
301 bool QDBusAbstractInterface::isValid() const
302 {
303     return d_func()->isValid;
304 }

So I guess d_func() is NULL. I don't grok the magic behind it though. So
is this a Qt bug? Or caused by some Ubuntu patch? Guess I'll file it at
KDE's Bugzilla as well.

-- 
NM widget crashes plasma when WLAN changes
https://bugs.launchpad.net/bugs/362864
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to