mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +00:00
properly initialize QImageReaderPrivate members
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
81e11932a5
commit
00398f2abe
1 changed files with 7 additions and 6 deletions
|
@ -452,13 +452,14 @@ public:
|
|||
\internal
|
||||
*/
|
||||
QImageReaderPrivate::QImageReaderPrivate()
|
||||
: autoDetectImageFormat(true), ignoresFormatAndExtension(false)
|
||||
: autoDetectImageFormat(true),
|
||||
ignoresFormatAndExtension(false),
|
||||
device(Q_NULLPTR),
|
||||
deleteDevice(false),
|
||||
handler(Q_NULLPTR),
|
||||
quality(-1),
|
||||
imageReaderError(QImageReader::UnknownError)
|
||||
{
|
||||
device = 0;
|
||||
deleteDevice = false;
|
||||
handler = 0;
|
||||
quality = -1;
|
||||
imageReaderError = QImageReader::UnknownError;
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
Loading…
Add table
Reference in a new issue