~ubuntu-branches/ubuntu/maverick/transmission/maverick-updates

« back to all changes in this revision

Viewing changes to gtk/dialogs.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson, Krzysztof Klimonda, Chris Coulson
  • Date: 2009-09-09 09:06:11 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20090909090611-09ai2hyo66h1dhv8
Tags: 1.74-0ubuntu1
[ Krzysztof Klimonda ]
* Merge from debian unstable, remaining changes:
  - debian/control:
    + Added replaces & provides clutch (now included as part of transmission).
    + add liblaunchpad-integration to Build-Depends
  - debian/rules:
    + Create a PO template during package build.
  - debian/patches/01_lpi.patch:
    + Integrate Transmission with Launchpad
  - debian/patches/20_add_X-Ubuntu-Gettext-Domain.diff:
    + Add X-Ubuntu-Gettext-Domain to .desktop file.
* debian/control:
  - add lsb-release to Build-Depends
* This includes the QT client in transmission-qt.

[ Chris Coulson ]
* Update to new upstream version 1.74 (LP: #418367):
  - Better data recovery in the case of an OS or Transmission crash
  - If a data file is moved, stop the torrent instead of redownloading 
    it (LP: #419304).
  - Fix bug that didn't list some peers in the resume file and in PEX
  - More helpful torrent error messages
  - DHT now honors the bind-address-ipv4 configuration option
  - Fix Debian build error with miniupnpc
  - Fix Cygwin build error with strtold
  - Update to a newer snapshot of miniupnpc
  - Fix crash that occurred when adding torrents on some desktops
  - Synchronize the statusbar's and torrent list's speeds
  - Fix the Properties dialog's "Origin" field for multiple torrents
* debian/rules, debian/control:
  - Don't run autoreconf at build time and don't build-dep on libtool.
* debian/control:
  - transmission-common replaces transmission-gtk (<< 1.74) rather than
    (<= 1.73-1).
* Refreshed patches:
  - 01_lpi.patch.
  - dont_build_libevent.patch.
  - qt_client_use_system_libevent.patch.
* Dropped patches not needed anymore:
  - updateminiupnpcstrings_double_escape_slash.patch
* Added 99_autoreconf.patch for autotools update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: dialogs.h 6795 2008-09-23 19:11:04Z charles $
 
2
 * $Id: dialogs.h 8846 2009-07-22 15:55:48Z charles $
3
3
 *
4
4
 * Copyright (c) 2005-2008 Transmission authors and contributors
5
5
 *
29
29
#include "tr-torrent.h"
30
30
#include "util.h"
31
31
 
 
32
 
 
33
/* used for a callback function with a data parameter */
 
34
typedef void ( *callbackfunc_t )( gpointer );
 
35
 
32
36
/* prompt if the user wants to quit, calls func with cbdata if they do */
33
 
void askquit(                               TrCore*,
34
 
                             GtkWindow*     parent,
35
 
                             callbackfunc_t func,
36
 
                             void*          cbdata );
 
37
void askquit( TrCore          * core,
 
38
              GtkWindow       * parent,
 
39
              callbackfunc_t    func,
 
40
              gpointer          cbdata );
37
41
 
38
42
void confirmRemove( GtkWindow * parent,
39
 
                    TrCore *    core,
40
 
                    GSList *    gtorrents,
 
43
                    TrCore    * core,
 
44
                    GSList    * gtorrents,
41
45
                    gboolean    doDelete );
42
46
 
43
47
#endif /* TG_PREFS_H */