kdeconnect-kde/core/backends/lan
Alexander Lohnau 49a51e2d27 Handle qDDebug/qCWarning categories more consistently
We can always provide a function rather than a value.
This is what we do in most places already and is consistent with the
rest of KDE.
This gets compiled to the same code.

```cpp
explicit QLoggingCategoryMacroHolder(const QLoggingCategory &cat)
{
    if (IsOutputEnabled)
        init(cat);
}
explicit QLoggingCategoryMacroHolder(QMessageLogger::CategoryFunction catfunc)
{
    if (IsOutputEnabled)
        init(catfunc());
}
```
2023-08-05 20:22:18 +00:00
..
CMakeLists.txt Add CMake flag to enable MDNS (off by default) 2023-07-17 20:41:15 +00:00
compositeuploadjob.cpp CompositeUploadJob: Use lambda connect, log errors 2023-08-05 20:22:18 +00:00
compositeuploadjob.h CompositeUploadJob: Use lambda connect, log errors 2023-08-05 20:22:18 +00:00
landevicelink.cpp Add explicit moc includes to cpp files 2023-07-30 07:27:45 +00:00
landevicelink.h Simplify the code that reads from the socket line by line 2023-07-10 15:58:56 +00:00
lanlinkprovider.cpp Handle qDDebug/qCWarning categories more consistently 2023-08-05 20:22:18 +00:00
lanlinkprovider.h Avoid starting more than 1 connection to the same device 2023-08-04 08:25:45 +00:00
mdnsdiscovery.cpp Add explicit moc includes to cpp files 2023-07-30 07:27:45 +00:00
mdnsdiscovery.h Add MDNS discovery 2023-07-17 20:41:15 +00:00
server.cpp Add explicit moc includes to cpp files 2023-07-30 07:27:45 +00:00
server.h Remove unused default destructors 2023-08-05 20:22:18 +00:00
uploadjob.cpp Discard unused params more elegantly 2023-08-05 20:22:18 +00:00
uploadjob.h Add and make use of ECM's clang-format integration 2022-09-11 23:21:58 +00:00