~ubuntu-branches/ubuntu/oneiric/transmission/oneiric

« back to all changes in this revision

Viewing changes to gtk/makemeta-ui.c

  • Committer: Bazaar Package Importer
  • Author(s): Leo Costela
  • Date: 2010-02-21 21:38:22 UTC
  • mfrom: (1.2.10 upstream)
  • mto: (2.2.7 squeeze)
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: james.westby@ubuntu.com-20100221213822-xusaepugvd4rgyrn
Tags: 1.90-1

* new upstream release
* debian/transmission-daemon.postrm: remove statoverride after deleting 
  group (closes: #569238)
* debian/{control,rules}: drop libcanberra-dev and libgconf-dev build-deps
  and ensure we build without them. Please check the bug log for a more
  complete rationalle behind the decision. (closes: #570416)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * This exemption does not extend to derived works not owned by
8
8
 * the Transmission project.
9
9
 *
10
 
 * $Id: makemeta-ui.c 9968 2010-01-20 14:27:48Z charles $
 
10
 * $Id: makemeta-ui.c 10066 2010-02-01 04:54:10Z charles $
11
11
 */
12
12
 
13
13
#include <string.h>
22
22
#include "hig.h"
23
23
#include "makemeta-ui.h"
24
24
#include "tr-core.h"
 
25
#include "tr-prefs.h"
25
26
#include "util.h"
26
27
 
27
28
#define FILE_CHOSEN_KEY "file-is-chosen"
189
190
    ui->progress_bar = w;
190
191
    gtk_box_pack_start( GTK_BOX( v ), w, FALSE, FALSE, 0 );
191
192
 
192
 
    ui->progress_tag = gtr_timeout_add_seconds( 1, onProgressDialogRefresh, ui );
 
193
    ui->progress_tag = gtr_timeout_add_seconds( SECONDARY_WINDOW_REFRESH_INTERVAL_SECONDS, onProgressDialogRefresh, ui );
193
194
    g_object_weak_ref( G_OBJECT( d ), onProgressDialogDestroyed, ui );
194
195
    onProgressDialogRefresh( ui );
195
196