~ubuntu-branches/ubuntu/saucy/indicator-sync/saucy-proposed

« back to all changes in this revision

Viewing changes to src/indicator/indicator-sync.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-09-28 17:35:41 UTC
  • Revision ID: package-import@ubuntu.com-20120928173541-5iwy69vxqnovz0jo
Tags: 12.10.3-0ubuntu2
* debian/patches/use_new_icons.patch:
  - use correct icons from ubuntu-mono (lp: #1043379)

Show diffs side-by-side

added added

removed removed

Lines of Context:
264
264
 
265
265
  if (state == SYNC_MENU_STATE_ERROR)
266
266
    {
267
 
      icon_name = "sync-error";
 
267
      icon_name = "ubuntuone-client-error";
268
268
    }
269
269
  else if (state == SYNC_MENU_STATE_SYNCING)
270
270
    {
271
 
      icon_name = "sync-syncing";
 
271
      icon_name = "ubuntuone-client-updating";
272
272
    }
273
273
  else if (paused)
274
274
    {
275
 
      icon_name = "sync-paused";
 
275
      icon_name = "ubuntuone-client-paused";
276
276
    }
277
277
  else
278
278
    {
279
 
      icon_name = "sync-idle";
 
279
      icon_name = "ubuntuone-client-idle";
280
280
    }
281
281
 
282
282
  return icon_name;