comparison pkui-backend.c @ 26:a8d8fba520ec

fix some typos
author Guido Berhoerster <gber@opensuse.org>
date Tue, 15 Nov 2011 11:46:58 +0100
parents 64f05992d8ec
children ed1457a4e2c8
comparison
equal deleted inserted replaced
25:bae8a7e20382 26:a8d8fba520ec
57 STATE_CHANGED_SIGNAL, 57 STATE_CHANGED_SIGNAL,
58 58
59 LAST_SIGNAL 59 LAST_SIGNAL
60 }; 60 };
61 61
62 static guint pkui_backend_signals[LAST_SIGNAL] = { 0, }; 62 static guint pkui_backend_signals[LAST_SIGNAL] = { 0 };
63 63
64 static gboolean periodic_check(gpointer data); 64 static gboolean periodic_check(gpointer data);
65 65
66 static void 66 static void
67 pkui_backend_set_property(GObject *object, guint property_id, 67 pkui_backend_set_property(GObject *object, guint property_id,
188 G_PARAM_READABLE); 188 G_PARAM_READABLE);
189 g_object_class_install_property(gobject_class, PROP_UPDATES_IMPORTANT, 189 g_object_class_install_property(gobject_class, PROP_UPDATES_IMPORTANT,
190 pspec); 190 pspec);
191 191
192 pspec = g_param_spec_uint("startup-delay", "Startup delay", 192 pspec = g_param_spec_uint("startup-delay", "Startup delay",
193 "Initial delay in second before the first check for new package " 193 "Initial delay in seconds before the first check for new package "
194 "updates", 0, G_MAXUINT, 60, 194 "updates", 0, G_MAXUINT, 60,
195 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); 195 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY);
196 g_object_class_install_property(gobject_class, PROP_STARTUP_DELAY, 196 g_object_class_install_property(gobject_class, PROP_STARTUP_DELAY,
197 pspec); 197 pspec);
198 198