diff options
| author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-06-01 12:14:48 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-06-07 13:52:10 -0500 |
| commit | 87c2f59166b7ec5b3ce44b5c4a2337c07a78e533 (patch) | |
| tree | 617c66c190a5ba29d3e79afd19e68f64d477c9f6 /qerror.h | |
| parent | a12eeaaa4fdaed9ed4a92f337b5f3c8a5a3fb946 (diff) | |
| download | focaccia-qemu-87c2f59166b7ec5b3ce44b5c4a2337c07a78e533.tar.gz focaccia-qemu-87c2f59166b7ec5b3ce44b5c4a2337c07a78e533.zip | |
QError: Introduce qerror_format()
Will be used by new error propagation framework to convert Error objects into human-readable form. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qerror.h')
| -rw-r--r-- | qerror.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qerror.h b/qerror.h index df61d2c2c6..13ad9d4321 100644 --- a/qerror.h +++ b/qerror.h @@ -39,6 +39,7 @@ QString *qerror_human(const QError *qerror); void qerror_print(QError *qerror); void qerror_report_internal(const char *file, int linenr, const char *func, const char *fmt, ...) GCC_FMT_ATTR(4, 5); +QString *qerror_format(const char *fmt, QDict *error); #define qerror_report(fmt, ...) \ qerror_report_internal(__FILE__, __LINE__, __func__, fmt, ## __VA_ARGS__) QError *qobject_to_qerror(const QObject *obj); |