diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-01-24 12:19:38 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-01-24 12:19:38 -0500 |
commit | 2d9e6ffd800cd27e0524c49c1e791ba83bfee165 (patch) | |
tree | 815a34ea07984d493f770606887c88a6319a607a /tools/indicator-loader.c | |
parent | 30ab1ed064f598d6b33289f7bd97b6ac97029e82 (diff) | |
parent | c2596f714bf499ed87bef58d68216054b63ee9c3 (diff) | |
download | libayatana-indicator-2d9e6ffd800cd27e0524c49c1e791ba83bfee165.tar.gz libayatana-indicator-2d9e6ffd800cd27e0524c49c1e791ba83bfee165.tar.bz2 libayatana-indicator-2d9e6ffd800cd27e0524c49c1e791ba83bfee165.zip |
* New upstream release.
* Support hiding and showing indicators
* Track the parent object in the entry
* Adding activate function to include Window ID
* debian/control: Bumping ABI version of lib
Diffstat (limited to 'tools/indicator-loader.c')
-rw-r--r-- | tools/indicator-loader.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/indicator-loader.c b/tools/indicator-loader.c index 59e90b1..10952dc 100644 --- a/tools/indicator-loader.c +++ b/tools/indicator-loader.c @@ -45,6 +45,10 @@ entry_added (IndicatorObject * io, IndicatorObjectEntry * entry, gpointer user_d { g_debug("Signal: Entry Added"); + if (entry->parent_object == NULL) { + g_warning("Entry '%p' does not have a parent object", entry); + } + GtkWidget * menuitem = gtk_menu_item_new(); #if GTK_CHECK_VERSION(3,0,0) GtkWidget * hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3); |