summaryrefslogtreecommitdiff
path: root/src/trg-main-window.c
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2012-02-26 16:50:01 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2012-02-26 16:50:01 +0000
commit538591d49d0f586005a79a077ff3c41b651b7d0d (patch)
tree5238f69d449df7b47578a3d5ab27a520a5569617 /src/trg-main-window.c
parent0d66230882f4fdf1e1435827236a49ac232420e4 (diff)
issue 185 - change .desktop to add magnet uri handler
Diffstat (limited to 'src/trg-main-window.c')
-rw-r--r--src/trg-main-window.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/trg-main-window.c b/src/trg-main-window.c
index f9d53ee..7b415ea 100644
--- a/src/trg-main-window.c
+++ b/src/trg-main-window.c
@@ -125,9 +125,9 @@ static void delete_cb(GtkWidget * w, TrgMainWindow * win);
static void open_props_cb(GtkWidget * w, TrgMainWindow * win);
static gint confirm_action_dialog(GtkWindow * gtk_win,
GtkTreeSelection * selection,
- gchar * question_single,
- gchar * question_multi,
- gchar * action_stock);
+ const gchar * question_single,
+ const gchar * question_multi,
+ const gchar * action_stock);
static void view_stats_toggled_cb(GtkWidget * w, gpointer data);
static void view_states_toggled_cb(GtkCheckMenuItem * w,
TrgMainWindow * win);
@@ -763,8 +763,8 @@ static void down_queue_cb(GtkWidget * w G_GNUC_UNUSED, TrgMainWindow * win)
static gint
confirm_action_dialog(GtkWindow * gtk_win,
GtkTreeSelection * selection,
- gchar * question_single,
- gchar * question_multi, gchar * action_stock)
+ const gchar * question_single,
+ const gchar * question_multi, const gchar * action_stock)
{
TrgMainWindow *win = TRG_MAIN_WINDOW(gtk_win);
TrgMainWindowPrivate *priv = win->priv;
@@ -1220,7 +1220,7 @@ static gboolean on_torrent_get(gpointer data, int mode)
gchar *statusBarMsg =
g_strdup_printf(_("Request %d/%d failed: %s"),
trg_client_get_failcount(client),
- max_retries, msg);
+ (gint)max_retries, msg);
trg_status_bar_push_connection_msg(priv->statusBar,
statusBarMsg);
g_free(msg);