Added QMediaRecorder::OutOfSpaceError error code

Change-Id: Ib09208a84f83f00992878f881ee2120932779a16
Reviewed-by: Lev Zelenskiy <lev.zelenskiy@nokia.com>
Reviewed-by: Ling Hu <ling.hu@nokia.com>
This commit is contained in:
Dmytro Poplavskiy
2012-05-11 15:32:02 +10:00
committed by Qt by Nokia
parent 8ce488249e
commit 25d95a0e63
2 changed files with 3 additions and 1 deletions

View File

@@ -908,6 +908,7 @@ void QMediaRecorder::stop()
\value NoError No Errors.
\value ResourceError Device is not ready or not available.
\value FormatError Current format is not supported.
\value OutOfSpaceError No space left on device.
*/
/*!

View File

@@ -107,7 +107,8 @@ public:
{
NoError,
ResourceError,
FormatError
FormatError,
OutOfSpaceError
};
QMediaRecorder(QMediaObject *mediaObject, QObject *parent = 0);