~ubuntu-branches/ubuntu/maverick/unity/maverick

« back to all changes in this revision

Viewing changes to unity-private/places/places-default-renderer-group.vala

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-17 14:02:54 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20100917140254-6cbue12klia2f07l
Tags: 0.2.40-0ubuntu1
* New upstream release:
  - Fix inactive menus accessible (LP: #604505)
  - Fix some more memory leaks (LP: #604777, #621690, #628144)
  - Fix weird behaviors of quicklist (LP: #617339)
  - Provide an "open this folder" button (LP: #633201)
  - Hidden menu causing gap (LP: #600191)
  - Cannot go fullscreen for flash videos (LP: #631381)
  - Can't access menu items from the keyboard (LP: #636728)
  - Don't register for MDRAGs since they aren't used (LP: #632613)
  - Don't run indicator on special launchers (LP: #627488)
  - Center arrows position in folded launcher tiles (LP: #633084)
  - Launcher icons first appear as white upon login (LP: #601093)
  - Removes jittering when rubber band is in use on the launcher (LP: #632991)
  - Mutter restarts on closing almost any application (LP: #634701)
  - Can't launch apps like synaptic with root privileges from launch bar
    (LP: #599298)
  - Launcher tile dragging shouldn't be masked (LP: #631443)
  - Fix Carousel-ed icons have distorted perspective (LP: #607515)
  - Use no longer sync call (LP: #620011)
* update debian/libunity0.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
284
284
                         results.get_string (iter, 5));
285
285
          button.iter = iter;
286
286
          cleanup_tiles.remove (button);
 
287
          button.unref (); /* Because Vala holds references when it shouldn't*/;
287
288
        }
288
289
      else if (group_renderer == "UnityFileInfoRenderer")
289
290
        {
296
297
 
297
298
          renderer.add_actor (button);
298
299
          button.show ();
299
 
          button.unref (); /* Because Vala sucks and holds references when it shouldn't*/;
 
300
          button.unref (); /* Because Vala holds references when it shouldn't*/;
300
301
          button.activated.connect ((u, m) => { activated (u, m); });
301
302
        }
302
303
      else if (group_renderer == "UnityShowcaseRenderer")
309
310
                                     results.get_string (iter, 5));
310
311
          renderer.add_actor (button);
311
312
          button.show ();
312
 
          button.unref (); /* Because Vala sucks and holds references when it shouldn't*/;
 
313
          button.unref (); /* Because Vala holds references when it shouldn't*/;
313
314
 
314
315
          button.activated.connect ((u, m) => { activated (u, m); });
315
316
        }
323
324
                                    results.get_string (iter, 5));
324
325
          renderer.add_actor (button);
325
326
          button.show ();
326
 
          button.unref (); /* Because Vala sucks and holds references when it shouldn't*/;
 
327
          button.unref (); /* Because Vala holds references when it shouldn't*/;
327
328
 
328
329
          button.activated.connect ((u, m) => { activated (u, m); });
329
330
        }