aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-09-09 10:03:33 -0500
committerTed Gould <ted@canonical.com>2009-09-09 10:03:33 -0500
commitd7a27576d1c853cb828425f26c35f3dfa2931ab0 (patch)
tree7024bf41af376dde69eed6771bcc0a79cff5b046
parent3891bd9fd2b325d18d734b4de9c52a0162cebd3b (diff)
downloadayatana-indicator-messages-d7a27576d1c853cb828425f26c35f3dfa2931ab0.tar.gz
ayatana-indicator-messages-d7a27576d1c853cb828425f26c35f3dfa2931ab0.tar.bz2
ayatana-indicator-messages-d7a27576d1c853cb828425f26c35f3dfa2931ab0.zip
Setting the default seconds to be the current time.
-rw-r--r--src/im-menu-item.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/im-menu-item.c b/src/im-menu-item.c
index f97436e..c2b3d12 100644
--- a/src/im-menu-item.c
+++ b/src/im-menu-item.c
@@ -125,12 +125,21 @@ im_menu_item_init (ImMenuItem *self)
g_debug("Building new IM Menu Item");
ImMenuItemPrivate * priv = IM_MENU_ITEM_GET_PRIVATE(self);
+ /* Set the variables to NULL, but they should be
+ configured further down the line. */
priv->listener = NULL;
priv->server = NULL;
priv->indicator = NULL;
+ /* A sane default, but look below */
priv->seconds = 0;
+ /* Set the seconds to be the time when the item was
+ created incase we're not given a better time. */
+ GTimeVal current_time;
+ g_get_current_time(&current_time);
+ priv->seconds = current_time.tv_sec;
+
return;
}