Changeset 2525


Ignore:
Timestamp:
Jul 28, 2007, 2:17:15 AM (16 years ago)
Author:
charles
Message:
  • better `info' icon for torrent inspector.
  • fix internal.h ifdefs s.t. we can use openssl for SHA1 when using configure.ac
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gtk/actions.c

    r2505 r2525  
    2828
    2929#if !GTK_CHECK_VERSION(2,8,0)
    30 #define GTK_STOCK_INFO NULL
     30#define GTK_STOCK_INFO GTK_STOCK_PROPERTIES
    3131#endif
    3232
     
    7171  { "edit-preferences", GTK_STOCK_PREFERENCES,
    7272    N_("Edit _Preferences"), NULL, NULL, G_CALLBACK(action_cb) },
    73   { "show-torrent-inspector", GTK_STOCK_PROPERTIES,
     73  { "show-torrent-inspector", GTK_STOCK_INFO,
    7474    N_("_Torrent Info"), NULL, NULL, G_CALLBACK(action_cb) },
    7575  { "show-about-dialog", GTK_STOCK_ABOUT,
    7676    N_("_About Transmission"), NULL, NULL, G_CALLBACK(action_cb) },
    77   { "show-debug-window", GTK_STOCK_INFO,
     77  { "show-debug-window", NULL,
    7878    N_("Show _Debug Window"), NULL, NULL, G_CALLBACK(action_cb) },
    7979  { "toggle-main-window", "ICON_TRANSMISSION",
  • trunk/libtransmission/internal.h

    r2488 r2525  
    7272   optimized and it is ok to use it with a MIT-licensed application.
    7373   Otherwise, we use the included implementation by vi@nwr.jp. */
    74 #ifdef HAVE_OPENSSL
     74#if defined(HAVE_OPENSSL) || defined(HAVE_LIBSSL)
    7575#  undef SHA_DIGEST_LENGTH
    7676#  include <openssl/sha.h>
Note: See TracChangeset for help on using the changeset viewer.