Changeset 2076
- Timestamp:
- Jun 14, 2007, 11:41:09 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/beos/TRInfoWindow.cpp
r1530 r2076 12 12 13 13 14 TRInfoWindow::TRInfoWindow(tr_stat_t *status, tr_info_t *info, c har *folder) : BWindow(BRect(0, 0, 250, 175), "Info",14 TRInfoWindow::TRInfoWindow(tr_stat_t *status, tr_info_t *info, const char *folder) : BWindow(BRect(0, 0, 250, 175), "Info", 15 15 B_FLOATING_WINDOW, B_ASYNCHRONOUS_CONTROLS | /*B_NOT_RESIZABLE*/ B_NOT_ZOOMABLE, 16 16 B_CURRENT_WORKSPACE) -
trunk/beos/TRInfoWindow.h
r1505 r2076 12 12 class TRInfoWindow : public BWindow { 13 13 public: 14 TRInfoWindow(tr_stat_t *status, tr_info_t *info, c har *folder);14 TRInfoWindow(tr_stat_t *status, tr_info_t *info, const char *folder); 15 15 ~TRInfoWindow(); 16 16 -
trunk/libtransmission/bencode.h
r1998 r2076 26 26 #define TR_BENCODE_H 1 27 27 28 #include < stdint.h> /* for int64_t */28 #include <inttypes.h> /* for int64_t */ 29 29 #include <string.h> /* for memset */ 30 30 -
trunk/libtransmission/inout.c
r1995 r2076 169 169 if (reorder) 170 170 { 171 int reorderRuns; 172 171 173 tr_dbg( "reorder pieces"); 172 173 int reorderRuns = reorderPieces( io ); 174 reorderRuns = reorderPieces( io ); 174 175 175 176 if (io->slotsUsed == slotsUsedOld && reorderRuns > 0) -
trunk/libtransmission/ipcparse.h
r2038 r2076 26 26 #define TR_DAEMON_IPC_H 27 27 28 #include < stdint.h>28 #include <inttypes.h> 29 29 30 30 /* yay for typedefs, we can't forward declare benc_val_t or tr_info_t
Note: See TracChangeset
for help on using the changeset viewer.