Changeset 4967
- Timestamp:
- Feb 7, 2008, 8:02:06 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 11 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r4891 r4967 243 243 wx/images/Makefile 244 244 gtk/Makefile 245 gtk/icons/Makefile 245 246 po/Makefile.in]) 246 247 -
trunk/gtk/Makefile.am
r4759 r4967 1 SUBDIRS = icons 2 1 3 AM_CPPFLAGS = \ 2 4 -I$(top_srcdir) \ … … 18 20 ipc.h \ 19 21 lock.h \ 20 logo.h \21 22 makemeta-ui.h \ 22 23 msgwin.h \ -
trunk/gtk/actions.c
r4911 r4967 20 20 #include "tr_prefs.h" 21 21 #include "lock.h" 22 #include "logo.h"23 22 24 23 #define UNUSED G_GNUC_UNUSED … … 163 162 const BuiltinIconInfo my_builtin_icons [] = 164 163 { 165 { tr_icon_logo, "transmission-logo" },166 164 { tr_icon_lock, "transmission-lock" } 167 165 }; -
trunk/gtk/main.c
r4966 r4967 278 278 gtk_ui_manager_add_ui_from_string (myUIManager, fallback_ui_file, -1, NULL); 279 279 gtk_ui_manager_ensure_update (myUIManager); 280 gtk_window_set_default_icon_name ( "transmission -logo" );280 gtk_window_set_default_icon_name ( "transmission" ); 281 281 282 282 argfiles = checkfilenames( argc-1, argv+1 ); … … 902 902 "website", "http://www.transmissionbt.com/", 903 903 "copyright",_("Copyright 2005-2008 The Transmission Project"), 904 "logo-icon-name", "transmission -logo",904 "logo-icon-name", "transmission", 905 905 #ifdef SHOW_LICENSE 906 906 "license", LICENSE, -
trunk/gtk/tr_icon.c
r4730 r4967 89 89 { 90 90 guint id; 91 GtkStatusIcon * icon = gtk_status_icon_new_from_stock ("transmission -logo");91 GtkStatusIcon * icon = gtk_status_icon_new_from_stock ("transmission"); 92 92 g_signal_connect( icon, "activate", G_CALLBACK( activated ), NULL ); 93 93 g_signal_connect( icon, "popup-menu", G_CALLBACK( popup ), NULL );
Note: See TracChangeset
for help on using the changeset viewer.