Line | Source Code | Coverage |
---|
1 | | - |
2 | | - |
3 | | - |
4 | bool QPlatformServices::openUrl(const QUrl &url) | - |
5 | { | - |
6 | QMessageLogger("kernel/qplatformservices.cpp", 62, __PRETTY_FUNCTION__).warning("This plugin does not support QPlatformServices::openUrl() for '%s'.", | - |
7 | QString(url.toString()).toLocal8Bit().constData()); | - |
8 | return false; never executed: return false; | 0 |
9 | } | - |
10 | | - |
11 | bool QPlatformServices::openDocument(const QUrl &url) | - |
12 | { | - |
13 | QMessageLogger("kernel/qplatformservices.cpp", 69, __PRETTY_FUNCTION__).warning("This plugin does not support QPlatformServices::openDocument() for '%s'.", | - |
14 | QString(url.toString()).toLocal8Bit().constData()); | - |
15 | return false; never executed: return false; | 0 |
16 | } | - |
17 | | - |
18 | | - |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | QByteArray QPlatformServices::desktopEnvironment() const | - |
24 | { | - |
25 | return QByteArray("UNKNOWN"); never executed: return QByteArray("UNKNOWN"); | 0 |
26 | } | - |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
| | |