~leprechaun-team/+junk/unity-use-patches

« back to all changes in this revision

Viewing changes to unity-private/places/places-place-bar.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-09-03 17:00:45 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100903170045-4wxx5upl87lkqnax
Tags: 0.2.34-0ubuntu1
* New upstream release:
  - Use gettext plural form (LP: #625199)
  - Fix newly pinned app is removed from the launcher on closing that app but
    works fine afterward (LP: #614329)
  - Fix Memory leak in places (LP: #628588)
* remove debian/source/:
  - revert to previous format, seems to confuse daily build and we don't have
    anymore bin patch
* remove upstreamed debian/trash.png, debian/applications.png and
  debian/files.png
* debian/rules:
  - remove copying debian/*png
* debian/libunity0.symbols:
  - refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
UnityPlacesPlaceView* unity_places_place_view_new (UnityPlacesPlace* place);
251
251
UnityPlacesPlaceView* unity_places_place_view_construct (GType object_type, UnityPlacesPlace* place);
252
252
static void _unity_places_place_bar_on_entry_activated_unity_places_place_view_entry_activated (UnityPlacesPlaceView* _sender, UnityPlacesPlaceEntryView* entry_view, gpointer self);
253
 
static void _lambda71_ (UnityPlacesPlace* p, UnityPlacesPlaceBar* self);
254
 
static void __lambda71__unity_places_place_model_place_added (UnityPlacesPlaceModel* _sender, UnityPlacesPlace* place, gpointer self);
 
253
static void _lambda72_ (UnityPlacesPlace* p, UnityPlacesPlaceBar* self);
 
254
static void __lambda72__unity_places_place_model_place_added (UnityPlacesPlaceModel* _sender, UnityPlacesPlace* place, gpointer self);
255
255
static GObject * unity_places_place_bar_constructor (GType type, guint n_construct_properties, GObjectConstructParam * construct_properties);
256
256
static void unity_places_place_bar_finalize (GObject* obj);
257
257
static void unity_places_place_bar_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec);
443
443
}
444
444
 
445
445
 
446
 
static void _lambda71_ (UnityPlacesPlace* p, UnityPlacesPlaceBar* self) {
 
446
static void _lambda72_ (UnityPlacesPlace* p, UnityPlacesPlaceBar* self) {
447
447
        UnityPlacesPlaceView* view;
448
448
        g_return_if_fail (p != NULL);
449
449
        view = g_object_ref_sink (unity_places_place_view_new (p));
454
454
}
455
455
 
456
456
 
457
 
static void __lambda71__unity_places_place_model_place_added (UnityPlacesPlaceModel* _sender, UnityPlacesPlace* place, gpointer self) {
458
 
        _lambda71_ (place, self);
 
457
static void __lambda72__unity_places_place_model_place_added (UnityPlacesPlaceModel* _sender, UnityPlacesPlace* place, gpointer self) {
 
458
        _lambda72_ (place, self);
459
459
}
460
460
 
461
461
 
498
498
                        }
499
499
                        _g_object_unref0 (_place_it);
500
500
                }
501
 
                g_signal_connect_object (self->priv->_model, "place-added", (GCallback) __lambda71__unity_places_place_model_place_added, self, 0);
 
501
                g_signal_connect_object (self->priv->_model, "place-added", (GCallback) __lambda72__unity_places_place_model_place_added, self, 0);
502
502
        }
503
503
        return obj;
504
504
}