error: New QERR_NO_BUS_FOR_DEVICE
This commit is contained in:
parent
4d9a1a1521
commit
fab5767f90
4
qerror.c
4
qerror.c
@ -124,6 +124,10 @@ static const QErrorStringTable qerror_table[] = {
|
||||
.error_fmt = QERR_MISSING_PARAMETER,
|
||||
.desc = "Parameter '%(name)' is missing",
|
||||
},
|
||||
{
|
||||
.error_fmt = QERR_NO_BUS_FOR_DEVICE,
|
||||
.desc = "No '%(bus)' bus found for device '%(device)'",
|
||||
},
|
||||
{
|
||||
.error_fmt = QERR_OPEN_FILE_FAILED,
|
||||
.desc = "Could not open '%(filename)'",
|
||||
|
3
qerror.h
3
qerror.h
@ -105,6 +105,9 @@ QError *qobject_to_qerror(const QObject *obj);
|
||||
#define QERR_MISSING_PARAMETER \
|
||||
"{ 'class': 'MissingParameter', 'data': { 'name': %s } }"
|
||||
|
||||
#define QERR_NO_BUS_FOR_DEVICE \
|
||||
"{ 'class': 'NoBusForDevice', 'data': { 'device': %s, 'bus': %s } }"
|
||||
|
||||
#define QERR_OPEN_FILE_FAILED \
|
||||
"{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user