From 6bf99726218df5e6a7fef7feed8dec87b2128594 Mon Sep 17 00:00:00 2001 From: Robin Burchell Date: Wed, 15 Mar 2017 17:52:01 +0100 Subject: QMovie: Add lastError and lastErrorString getters QMovie has an error signal, but it is not possible for users to "catch" all errors, for instance, if they occur at construction time, and furthermore, it may not be convenient to add interception of the signal just to find out what the error was. [ChangeLog][QtGui][QMovie] Added lastError and lastErrorString accessors, as a convenience over connecting to the error() signal. Change-Id: I9c6ef70694c67986ecd30b5dc1b321c4dfa5c315 Reviewed-by: Gunnar Sletta --- src/gui/image/qmovie.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gui/image/qmovie.h') diff --git a/src/gui/image/qmovie.h b/src/gui/image/qmovie.h index 2b41e07dba..ab8ef82aa0 100644 --- a/src/gui/image/qmovie.h +++ b/src/gui/image/qmovie.h @@ -106,6 +106,8 @@ public: QPixmap currentPixmap() const; bool isValid() const; + QImageReader::ImageReaderError lastError() const; + QString lastErrorString() const; bool jumpToFrame(int frameNumber); int loopCount() const; -- cgit v1.2.3