~ubuntu-branches/ubuntu/natty/avant-window-navigator/natty

« back to all changes in this revision

Viewing changes to applets/taskmanager/task-window.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-12-17 13:48:28 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20101217134828-l394fb03wdkxc3mq
Tags: 0.4.1~bzr803-0ubuntu1
* New upstream snapshot.
 - Fix a crash with signal 5 in _XError (LP: #612144)
 - Re-add "move to another workspace" to launcher (LP: #568555)
* debian/patches:
 - 02-ftbfs-python-2.6.patch: Refresh.
 - 03-python-import.patch: Refresh.
 - 04-lda-requierement.patch: New patch, lower desktop-agnostic requierement,
   the version in Natty is enough.
 - Drop all others patches, merged upstream.
* debian/copyright:
 - Update copyright years and upstream authors.
* debian/control:
 - Build-depends on valac-0.10 (>= 0.9.1), to force stable version of Vala.
* debian/libawn1.symbols:
 - Update with new symbols. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
290
290
    gtk_widget_destroy (priv->box);
291
291
    priv->box=NULL;
292
292
  }
293
 
  
294
293
  G_OBJECT_CLASS (task_window_parent_class)->dispose (object);
295
294
}
296
295
 
479
478
}
480
479
 
481
480
TaskItem *
482
 
task_window_new (AwnApplet * applet, WnckWindow *window)
 
481
task_window_new (AwnApplet * applet, GObject * proxy, WnckWindow *window)
483
482
{
484
483
  TaskItem *win = NULL;
485
484
 
486
485
  win = g_object_new (TASK_TYPE_WINDOW,
 
486
                      "proxy",proxy,
487
487
                      "taskwindow", window,
488
488
                      "applet",applet,
489
489
                      NULL);