summaryrefslogtreecommitdiffstats
path: root/src/gui/image/qimagewriter.h
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@crimson.no>2017-02-10 15:37:12 +0100
committerRobin Burchell <robin.burchell@crimson.no>2017-02-27 18:03:33 +0000
commit7a717aaf459476f4a1f091b0e1d832c592f2caf1 (patch)
treee0da8753771dc7b117125c49f5c314bfd131c7c3 /src/gui/image/qimagewriter.h
parent1631384c278620597323b0b78abce3ef7022db26 (diff)
QImageWriter: Detect failure due to trying to write a QImage()
This is not a bug in QImageWriter, but caller code. We should be explicit about what the problem was so it can be fixed. [ChangeLog][QtGui][QImageWriter] Add QImageWriter::InvalidImageError to communicate invalid attempts to write a bad QImage (for instance, a null QImage). Change-Id: I0333b8263f1da1c672bed17dab48bfd6cafe41a2 Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
Diffstat (limited to 'src/gui/image/qimagewriter.h')
-rw-r--r--src/gui/image/qimagewriter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/image/qimagewriter.h b/src/gui/image/qimagewriter.h
index 58f8c51472..fd1fdd07e8 100644
--- a/src/gui/image/qimagewriter.h
+++ b/src/gui/image/qimagewriter.h
@@ -60,7 +60,8 @@ public:
enum ImageWriterError {
UnknownError,
DeviceError,
- UnsupportedFormatError
+ UnsupportedFormatError,
+ InvalidImageError
};
QImageWriter();