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

« back to all changes in this revision

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

  • 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:
250
250
float unity_places_section_get_resize_factor (UnityPlacesSection* self);
251
251
void unity_places_section_set_resize_factor (UnityPlacesSection* self, float value);
252
252
static void _unity_places_section_paint_bg_unity_cairo_canvas_cairo_canvas_paint (cairo_t* cr, gint width, gint height, gpointer self);
253
 
static void _lambda40_ (UnityPlacesSection* self);
254
 
static void __lambda40__g_object_notify (GObject* _sender, GParamSpec* pspec, gpointer self);
 
253
static void _lambda42_ (UnityPlacesSection* self);
 
254
static void __lambda42__g_object_notify (GObject* _sender, GParamSpec* pspec, gpointer self);
255
255
static GObject * unity_places_section_constructor (GType type, guint n_construct_properties, GObjectConstructParam * construct_properties);
256
256
static void unity_places_section_finalize (GObject* obj);
257
257
static void unity_places_section_get_property (GObject * object, guint property_id, GValue * value, GParamSpec * pspec);
1121
1121
}
1122
1122
 
1123
1123
 
1124
 
static void _lambda40_ (UnityPlacesSection* self) {
 
1124
static void _lambda42_ (UnityPlacesSection* self) {
1125
1125
        if (unity_places_section_get_active (self)) {
1126
1126
                return;
1127
1127
        }
1137
1137
}
1138
1138
 
1139
1139
 
1140
 
static void __lambda40__g_object_notify (GObject* _sender, GParamSpec* pspec, gpointer self) {
1141
 
        _lambda40_ (self);
 
1140
static void __lambda42__g_object_notify (GObject* _sender, GParamSpec* pspec, gpointer self) {
 
1141
        _lambda42_ (self);
1142
1142
}
1143
1143
 
1144
1144
 
1169
1169
                self->text = (_tmp6_ = g_object_ref_sink ((CtkText*) ctk_text_new (dee_model_get_string (self->priv->_model, self->priv->_iter, (guint) 0))), _g_object_unref0 (self->text), _tmp6_);
1170
1170
                clutter_container_add_actor ((ClutterContainer*) self, (ClutterActor*) self->text);
1171
1171
                clutter_actor_show ((ClutterActor*) self->text);
1172
 
                g_signal_connect_object ((GObject*) self, "notify::state", (GCallback) __lambda40__g_object_notify, self, 0);
 
1172
                g_signal_connect_object ((GObject*) self, "notify::state", (GCallback) __lambda42__g_object_notify, self, 0);
1173
1173
        }
1174
1174
        return obj;
1175
1175
}