Changeset 3392
- Timestamp:
- Oct 13, 2007, 1:51:38 PM (15 years ago)
- Location:
- trunk/gtk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/Makefile.am
r3375 r3392 14 14 io.h \ 15 15 ipc.h \ 16 lock.h \ 16 17 logo.h \ 17 18 makemeta-ui.h \ -
trunk/gtk/actions.c
r3375 r3392 16 16 #include <libtransmission/transmission.h> 17 17 #include "torrent-inspector.h" 18 #include "lock.h" 18 19 #include "logo.h" 19 20 … … 121 122 const BuiltinIconInfo my_builtin_icons [] = 122 123 { 123 { tr_icon_full, "transmission-logo" } 124 { tr_icon_logo, "transmission-logo" }, 125 { tr_icon_lock, "transmission-lock" } 124 126 }; 125 127 -
trunk/gtk/logo.h
r3373 r3392 2 2 3 3 #ifdef __SUNPRO_C 4 #pragma align 4 (tr_icon_ full)4 #pragma align 4 (tr_icon_logo) 5 5 #endif 6 6 #ifdef __GNUC__ 7 static const guint8 tr_icon_ full[] __attribute__ ((__aligned__ (4))) =7 static const guint8 tr_icon_logo[] __attribute__ ((__aligned__ (4))) = 8 8 #else 9 static const guint8 tr_icon_ full[] =9 static const guint8 tr_icon_logo[] = 10 10 #endif 11 11 { "" -
trunk/gtk/torrent-inspector.c
r3354 r3392 339 339 g_object_set (renderer, "xalign", (gfloat)0.0, 340 340 "yalign", (gfloat)0.5, 341 "stock-id", (is_encrypted ? GTK_STOCK_DIALOG_AUTHENTICATION: NULL),341 "stock-id", (is_encrypted ? "transmission-lock" : NULL), 342 342 NULL); 343 343 } … … 491 491 492 492 /* TODO: make this configurable? */ 493 int view_columns[] = { PEER_COL_IS_ENCRYPTED, 494 PEER_COL_ADDRESS, 493 int view_columns[] = { PEER_COL_ADDRESS, 495 494 PEER_COL_CLIENT, 496 495 PEER_COL_PROGRESS, 496 PEER_COL_IS_ENCRYPTED, 497 497 PEER_COL_UPLOAD_RATE, 498 498 PEER_COL_DOWNLOAD_RATE };
Note: See TracChangeset
for help on using the changeset viewer.