summaryrefslogtreecommitdiff
path: root/telepathy-glib/dbus-properties-mixin.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-04-30 16:19:07 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-04-30 16:19:07 +0100
commit8b96c00668529c498cb6946fdd18f6481e9ceff1 (patch)
tree30365452b9a9afc3ee9dd6af9145e5cc253286d5 /telepathy-glib/dbus-properties-mixin.c
parent88e91939bf941e4566708f3137404f5048ca04d2 (diff)
downloadtelepathy-glib-8b96c00668529c498cb6946fdd18f6481e9ceff1.tar.gz
Use macros WARNING(), etc., consistently (within the library)
Diffstat (limited to 'telepathy-glib/dbus-properties-mixin.c')
-rw-r--r--telepathy-glib/dbus-properties-mixin.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/telepathy-glib/dbus-properties-mixin.c b/telepathy-glib/dbus-properties-mixin.c
index d9e111976..2eee65192 100644
--- a/telepathy-glib/dbus-properties-mixin.c
+++ b/telepathy-glib/dbus-properties-mixin.c
@@ -351,7 +351,7 @@ link_interface (GType type,
if (iface_info == NULL)
{
- g_critical ("%s tried to implement undefined interface %s",
+ CRITICAL ("%s tried to implement undefined interface %s",
g_type_name (type), iface_impl->name);
return FALSE;
}
@@ -382,7 +382,7 @@ link_interface (GType type,
if (prop_impl->mixin_priv == NULL)
{
- g_critical ("%s tried to implement nonexistent property %s"
+ CRITICAL ("%s tried to implement nonexistent property %s"
" on interface %s", g_type_name (type), prop_impl->name,
iface_impl->name);
return FALSE;
@@ -479,7 +479,7 @@ tp_dbus_properties_mixin_implement_interface (GObjectClass *cls,
if (G_UNLIKELY (other_info->dbus_interface == iface))
{
- g_critical ("type %s tried to implement interface %s with %s "
+ CRITICAL ("type %s tried to implement interface %s with %s "
"twice", g_type_name (type), g_quark_to_string (iface),
G_STRFUNC);
goto out;
@@ -500,7 +500,7 @@ tp_dbus_properties_mixin_implement_interface (GObjectClass *cls,
if (G_UNLIKELY (other_info->dbus_interface == iface))
{
- g_critical ("type %s tried to implement interface %s with %s "
+ CRITICAL ("type %s tried to implement interface %s with %s "
"and also in static data", g_type_name (type),
g_quark_to_string (iface), G_STRFUNC);
goto out;
@@ -600,7 +600,7 @@ tp_dbus_properties_mixin_class_init (GObjectClass *cls,
if (G_UNLIKELY (iface_quark == other_info->dbus_interface))
{
- g_critical ("type %s tried to implement interface %s in static "
+ CRITICAL ("type %s tried to implement interface %s in static "
"data twice", g_type_name (type), iface_impl->name);
goto out;
}