https://bugs.kde.org/show_bug.cgi?id=388168

--- Comment #1 from Ralf Habacker <ralf.habac...@freenet.de> ---
Running the networkingclient prints out the following message:

[384] Warning:QObject::connect: No such slot
solid::NetworkingPrivate::serviceStatusChanged(bool)

which seems to be created by the following code fragment located in
src/solid/networking_p.h

#ifndef Q_OS_WIN
    /**
     * Called on DBus signal from the network status service
     */
    void serviceStatusChanged(uint status);
#else
    void serviceStatusChanged(bool status);
#endif

Because moc does not define Q_OS_WIN a signal with uint type is generated and
therefore related connection fails -> need to to define Q_OS_WIN on running moc
on Windows.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to