From: Markus Armbruster Date: Fri, 19 Feb 2010 18:53:36 +0000 (+0100) Subject: error: New QERR_BUS_NO_HOTPLUG X-Git-Tag: TizenStudio_2.0_p2.3~5375^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f6d2395139b882f97007f2d397d24a4df1d3fe4;p=sdk%2Femulator%2Fqemu.git error: New QERR_BUS_NO_HOTPLUG --- diff --git a/qerror.c b/qerror.c index 345bfef..d0fc1ae 100644 --- a/qerror.c +++ b/qerror.c @@ -49,6 +49,10 @@ static const QErrorStringTable qerror_table[] = { .desc = "Bus '%(bus)' not found", }, { + .error_fmt = QERR_BUS_NO_HOTPLUG, + .desc = "Bus '%(bus)' does not support hotplugging", + }, + { .error_fmt = QERR_COMMAND_NOT_FOUND, .desc = "The command %(name) has not been found", }, diff --git a/qerror.h b/qerror.h index 87fde06..6cd2e2d 100644 --- a/qerror.h +++ b/qerror.h @@ -48,6 +48,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_BUS_NOT_FOUND \ "{ 'class': 'BusNotFound', 'data': { 'bus': %s } }" +#define QERR_BUS_NO_HOTPLUG \ + "{ 'class': 'BusNoHotplug', 'data': { 'bus': %s } }" + #define QERR_COMMAND_NOT_FOUND \ "{ 'class': 'CommandNotFound', 'data': { 'name': %s } }"