Line | Source Code | Coverage |
---|
1 | | - |
2 | | - |
3 | | - |
4 | QPictureFormatPlugin::QPictureFormatPlugin(QObject *parent) | - |
5 | : QObject(parent) | - |
6 | { | - |
7 | } | 0 |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | QPictureFormatPlugin::~QPictureFormatPlugin() | - |
16 | { | - |
17 | } | - |
18 | bool QPictureFormatPlugin::loadPicture(const QString &format, const QString &fileName, QPicture *picture) | - |
19 | { | - |
20 | (void)format; | - |
21 | (void)fileName; | - |
22 | (void)picture; | - |
23 | return false; never executed: return false; | 0 |
24 | } | - |
25 | bool QPictureFormatPlugin::savePicture(const QString &format, const QString &fileName, const QPicture &picture) | - |
26 | { | - |
27 | (void)format; | - |
28 | (void)fileName; | - |
29 | (void)picture; | - |
30 | return false; never executed: return false; | 0 |
31 | } | - |
32 | | - |
33 | | - |
34 | | - |
35 | | - |
36 | | - |
| | |