[tracker] tracker-store: Default to Idle and 100% for Tracker1.Status
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker] tracker-store: Default to Idle and 100% for Tracker1.Status
- Date: Tue, 30 Mar 2010 12:53:32 +0000 (UTC)
commit 70c64b72ef22cbee2b058878c0b44535b4c4ce5f
Author: Philip Van Hoof <philip codeminded be>
Date: Tue Mar 30 14:52:08 2010 +0200
tracker-store: Default to Idle and 100% for Tracker1.Status
src/tracker-store/tracker-status.c | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
---
diff --git a/src/tracker-store/tracker-status.c b/src/tracker-store/tracker-status.c
index d325a50..841fdf1 100644
--- a/src/tracker-store/tracker-status.c
+++ b/src/tracker-store/tracker-status.c
@@ -111,6 +111,8 @@ tracker_status_init (TrackerStatus *object)
priv->object = object;
priv->timer_id = 0;
+ priv->progress = 1;
+ priv->status = g_strdup ("Idle");
}
static gboolean
@@ -130,9 +132,21 @@ busy_notification_destroy (gpointer user_data)
{
TrackerStatusPrivate *priv = user_data;
+ if (priv->status) {
+ g_free (priv->status);
+ }
+ priv->status = g_strdup ("Idle");
+ priv->progress = 1;
priv->timer_id = 0;
}
+static void
+busy_notification_idle_destroy (gpointer user_data)
+{
+ TrackerStatusPrivate *priv = user_data;
+
+ priv->timer_id = 0;
+}
static void
tracker_status_callback (const gchar *status,
@@ -153,7 +167,7 @@ tracker_status_callback (const gchar *status,
priv->timer_id = g_idle_add_full (G_PRIORITY_DEFAULT,
busy_notification_timeout,
priv,
- busy_notification_destroy);
+ busy_notification_idle_destroy);
first_time = FALSE;
} else {
priv->timer_id = g_timeout_add_seconds_full (G_PRIORITY_DEFAULT, PROGRESS_TIMEOUT_S,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]