| 130 | } |
| 131 | |
| 132 | Settings::Settings(QObject *parent) |
| 133 | : QObject(parent), |
| 134 | d(new SettingsPrivate) |
| 135 | { |
| 136 | } |
| 137 | |
| 138 | Settings::Settings(const QString &defaultFile, const QString &settingFile, QObject *parent) |
| 139 | : Settings(parent) |
nothing calls this directly
no test coverage detected