Make constructor explicit

This commit is contained in:
Albert Vaca Cintora 2023-06-25 20:41:39 +02:00
parent 8c69e48e2f
commit 841d2c1476

View file

@ -18,13 +18,12 @@ class PublicService;
class ServiceBrowser;
};
// This class overrides QTcpServer to bind QSslSocket to native socket descriptor instead of QTcpSocket
class KDECONNECTCORE_EXPORT MdnsDiscovery : public QObject
{
Q_OBJECT
public:
MdnsDiscovery(LanLinkProvider *parent);
explicit MdnsDiscovery(LanLinkProvider *parent);
~MdnsDiscovery();
void startDiscovering();