diff options
author | Ted Gould <ted@canonical.com> | 2009-11-03 22:42:39 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-03 22:42:39 -0600 |
commit | cb0c099a07068f374e7ce27b873d2773131e4a48 (patch) | |
tree | be68d78a023df69a53fbcc4e626411613c0273da | |
parent | cfa83c08d769ba10eb90718e3c856b18e49c691b (diff) | |
download | libayatana-indicator-cb0c099a07068f374e7ce27b873d2773131e4a48.tar.gz libayatana-indicator-cb0c099a07068f374e7ce27b873d2773131e4a48.tar.bz2 libayatana-indicator-cb0c099a07068f374e7ce27b873d2773131e4a48.zip |
Making a warning not use a colloquialism.
-rw-r--r-- | libindicator/indicator-service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicator/indicator-service.c b/libindicator/indicator-service.c index ff0bd03..69422c5 100644 --- a/libindicator/indicator-service.c +++ b/libindicator/indicator-service.c @@ -209,7 +209,7 @@ set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec priv->name = g_value_dup_string(value); try_and_get_name(self); } else { - g_warning("Name is a string bud."); + g_warning("Name property requires a string value."); } break; /* *********************** */ @@ -236,7 +236,7 @@ get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspe if (G_VALUE_HOLDS_STRING(value)) { g_value_set_string(value, priv->name); } else { - g_warning("Name is a string bud."); + g_warning("Name property requires a string value."); } break; /* *********************** */ |