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

« back to all changes in this revision

Viewing changes to unity-private/testing/background.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:
94
94
UnityTestingBackground* unity_testing_background_new (void);
95
95
UnityTestingBackground* unity_testing_background_construct (GType object_type);
96
96
static void _unity_testing_background_on_allocation_changed (UnityTestingBackground* self);
97
 
static gboolean _lambda96_ (UnityTestingBackground* self);
 
97
static gboolean _lambda98_ (UnityTestingBackground* self);
98
98
static void _unity_testing_background_update_gradient (UnityTestingBackground* self);
99
 
static gboolean __lambda96__gsource_func (gpointer self);
 
99
static gboolean __lambda98__gsource_func (gpointer self);
100
100
static void _unity_testing_background_on_gconf_changed (UnityTestingBackground* self, GConfClient* client, guint cxnid, GConfEntry* entry);
101
101
static void __unity_testing_background_on_gconf_changed_gconf_client_notify_func (GConfClient* client, guint cnxn_id, GConfEntry* entry, gpointer self);
102
102
static void __unity_testing_background_on_allocation_changed_clutter_actor_allocation_changed (ClutterActor* _sender, const ClutterActorBox* box, ClutterAllocationFlags flags, gpointer self);
118
118
}
119
119
 
120
120
 
121
 
static gboolean _lambda96_ (UnityTestingBackground* self) {
 
121
static gboolean _lambda98_ (UnityTestingBackground* self) {
122
122
        gboolean result = FALSE;
123
123
        _unity_testing_background_update_gradient (self);
124
124
        result = FALSE;
126
126
}
127
127
 
128
128
 
129
 
static gboolean __lambda96__gsource_func (gpointer self) {
 
129
static gboolean __lambda98__gsource_func (gpointer self) {
130
130
        gboolean result;
131
 
        result = _lambda96_ (self);
 
131
        result = _lambda98_ (self);
132
132
        return result;
133
133
}
134
134
 
135
135
 
136
136
static void _unity_testing_background_on_allocation_changed (UnityTestingBackground* self) {
137
137
        g_return_if_fail (self != NULL);
138
 
        g_timeout_add_full (G_PRIORITY_DEFAULT, (guint) 0, __lambda96__gsource_func, g_object_ref (self), g_object_unref);
 
138
        g_timeout_add_full (G_PRIORITY_DEFAULT, (guint) 0, __lambda98__gsource_func, g_object_ref (self), g_object_unref);
139
139
}
140
140
 
141
141