~timo-jyrinki/ubuntu/quantal/bamf/ubuntu.034

« back to all changes in this revision

Viewing changes to lib/libbamf/bamf-indicator.c

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2012-07-04 14:24:09 UTC
  • mfrom: (235.1.49)
  • Revision ID: lukasz.zemczak@canonical.com-20120704142409-1hrzy1djnwmrxgx1
* New upstream release.
  - Started applications pinned to the launcher are not set as running
    (LP: #976642)
  - sometimes icons get dropped from the launcher when they should not
    (LP: #925421)

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  if (priv->dbus_menu)
71
71
    return priv->dbus_menu;
72
72
  
73
 
  if (!bamf_view_remote_ready (BAMF_VIEW (self)))
 
73
  if (!_bamf_view_remote_ready (BAMF_VIEW (self)))
74
74
    return NULL;
75
75
  
76
76
  proxy = dbus_g_proxy_new_for_name (priv->connection,
113
113
  if (priv->path)
114
114
    return priv->path;
115
115
  
116
 
  if (!bamf_view_remote_ready (BAMF_VIEW (self)))
 
116
  if (!_bamf_view_remote_ready (BAMF_VIEW (self)))
117
117
    return NULL;
118
118
  
119
119
  if (!dbus_g_proxy_call (priv->proxy,
147
147
  if (priv->address)
148
148
    return priv->address;
149
149
  
150
 
  if (!bamf_view_remote_ready (BAMF_VIEW (self)))
 
150
  if (!_bamf_view_remote_ready (BAMF_VIEW (self)))
151
151
    return NULL;
152
152
  
153
153
  if (!dbus_g_proxy_call (priv->proxy,
267
267
  BamfIndicator *self;
268
268
  self = g_object_new (BAMF_TYPE_INDICATOR, NULL);
269
269
 
270
 
  bamf_view_set_path (BAMF_VIEW (self), path);
 
270
  _bamf_view_set_path (BAMF_VIEW (self), path);
271
271
 
272
272
  return self;
273
273
}