Changeset 8233
- Timestamp:
- Apr 13, 2009, 7:04:21 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/cli.c
r8181 r8233 34 34 #include <libtransmission/tr-getopt.h> 35 35 #include <libtransmission/utils.h> /* tr_wait */ 36 #include <libtransmission/version.h> 36 37 #include <libtransmission/web.h> /* tr_webRun */ 37 38 -
trunk/gtk/util.c
r8117 r8233 43 43 #include <libtransmission/transmission.h> /* TR_RATIO_NA, TR_RATIO_INF */ 44 44 #include <libtransmission/utils.h> /* tr_inf */ 45 #include <libtransmission/version.h> /* tr_inf */ 45 46 46 47 #include "conf.h" -
trunk/libtransmission/peer-msgs.c
r8091 r8233 39 39 #include "trevent.h" 40 40 #include "utils.h" 41 #include "version.h" 41 42 42 43 /** -
trunk/libtransmission/rpcimpl.c
r8230 r8233 21 21 #include "transmission.h" 22 22 #include "bencode.h" 23 #include "completion.h" 24 #include "json.h" 23 25 #include "rpcimpl.h" 24 #include "json.h"25 26 #include "session.h" 26 27 #include "stats.h" 27 28 #include "torrent.h" 28 #include "completion.h"29 29 #include "utils.h" 30 #include "version.h" 30 31 #include "web.h" 31 32 -
trunk/libtransmission/session.c
r8193 r8233 28 28 #include "bencode.h" 29 29 #include "blocklist.h" 30 #include "crypto.h" 30 31 #include "fdlimit.h" 31 32 #include "list.h" … … 41 42 #include "trevent.h" 42 43 #include "utils.h" 44 #include "version.h" 43 45 #include "web.h" 44 #include "crypto.h"45 46 46 47 #define dbgmsg( ... ) \ -
trunk/libtransmission/test-peer-id.c
r7783 r8233 5 5 #include "session.h" 6 6 #include "utils.h" 7 #include "version.h" 7 8 8 9 #undef VERBOSE -
trunk/libtransmission/transmission.h
r8186 r8233 36 36 extern "C" { 37 37 #endif 38 39 #include "version.h"40 38 41 39 #include <inttypes.h> /* uintN_t */ -
trunk/libtransmission/web.c
r8134 r8233 25 25 #include "trevent.h" 26 26 #include "utils.h" 27 #include "version.h" 27 28 #include "web.h" 28 29 -
trunk/qt/app.cc
r8188 r8233 22 22 #include <libtransmission/transmission.h> 23 23 #include <libtransmission/tr-getopt.h> 24 #include <libtransmission/version.h> 24 25 25 26 #include "app.h" -
trunk/qt/mainwin.cc
r8216 r8233 23 23 #include <QUrl> 24 24 #include <QSignalMapper> 25 26 #include <libtransmission/version.h> 25 27 26 28 #include "about.h" -
trunk/qt/qtr.pro
r8231 r8233 2 2 NAME = "Transmission" 3 3 DESCRIPTION = "Transmission: a fast, easy, and free BitTorrent client" 4 VERSION = 1.6 .04 VERSION = 1.60 5 5 LICENSE = "GPL" 6 6 … … 23 23 FORMS += mainwin.ui about.ui 24 24 RESOURCES += application.qrc 25 SOURCES += about.cc \ 26 app.cc \ 27 details.cc \ 28 file-tree.cc \ 29 filters.cc \ 30 hig.cc \ 31 mainwin.cc \ 32 make-dialog.cc \ 33 options.cc \ 34 prefs.cc \ 35 prefs-dialog.cc \ 36 qticonloader.cc \ 37 session.cc \ 38 squeezelabel.cc \ 39 stats-dialog.cc \ 40 torrent.cc \ 41 torrent-delegate.cc \ 42 torrent-delegate-min.cc \ 43 torrent-filter.cc \ 44 torrent-model.cc \ 45 utils.cc \ 46 watchdir.cc 25 SOURCES += about.cc app.cc details.cc file-tree.cc filters.cc hig.cc \ 26 mainwin.cc make-dialog.cc options.cc prefs.cc prefs-dialog.cc \ 27 qticonloader.cc session.cc squeezelabel.cc stats-dialog.cc \ 28 torrent.cc torrent-delegate.cc torrent-delegate-min.cc \ 29 torrent-filter.cc torrent-model.cc utils.cc watchdir.cc 47 30 HEADERS += $$replace(SOURCES, .cc, .h) 48 31 HEADERS += speed.h types.h
Note: See TracChangeset
for help on using the changeset viewer.