diff options
Diffstat (limited to 'inc/common/error.h')
-rw-r--r-- | inc/common/error.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/inc/common/error.h b/inc/common/error.h index 6b7754e..2a9702e 100644 --- a/inc/common/error.h +++ b/inc/common/error.h @@ -51,10 +51,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #define Q_ERR_RUNAWAY_LOOP _Q_ERR(15) // Runaway loop avoided #define Q_ERR_INFINITE_LOOP _Q_ERR(16) // Infinite loop avoided #define Q_ERR_LIBRARY_ERROR _Q_ERR(17) // Library error +#define Q_ERR_OUT_OF_SLOTS _Q_ERR(18) // Out of slots #if USE_ZLIB -#define Q_ERR_INFLATE_FAILED _Q_ERR(18) // Inflate failed -#define Q_ERR_DEFLATE_FAILED _Q_ERR(19) // Deflate failed -#define Q_ERR_NOT_COHERENT _Q_ERR(20) // Coherency check failed +#define Q_ERR_INFLATE_FAILED _Q_ERR(19) // Inflate failed +#define Q_ERR_DEFLATE_FAILED _Q_ERR(20) // Deflate failed +#define Q_ERR_NOT_COHERENT _Q_ERR(21) // Coherency check failed #endif // These values directly map to system errno. |