diff pidgin-twitter.c @ 86:89f52081f115

replaced int with gint
author Yoshiki Yazawa <yaz@honeyplnaet.jp>
date Sun, 06 Jul 2008 15:30:55 +0900
parents fb9831fae969
children 76e5611910c5
line wrap: on
line diff
--- a/pidgin-twitter.c	Sun Jul 06 01:51:07 2008 +0900
+++ b/pidgin-twitter.c	Sun Jul 06 15:30:55 2008 +0900
@@ -1093,13 +1093,13 @@
     got_icon_data *gotdata = (got_icon_data *)user_data;
 
     gchar *user_name = gotdata->user_name;
-    int service = gotdata->service;
+    gint service = gotdata->service;
 
     GList *win_list;
     GtkIMHtml *target_imhtml = NULL;
     GtkTextBuffer *target_buffer = NULL;
     GtkTextIter inserting_point;
-    int icon_id;
+    gint icon_id;
     icon_data *data = NULL;
 
     twitter_debug("called: service = %d\n", service);
@@ -1167,7 +1167,7 @@
 }
 
 static void
-insert_requested_icon(const gchar *user_name, int service)
+insert_requested_icon(const gchar *user_name, gint service)
 {
     icon_data *data = NULL;
     GList *mark_list = NULL;
@@ -1209,9 +1209,9 @@
 {
     got_icon_data *gotdata = (got_icon_data *)user_data;
     gchar *user_name = gotdata->user_name;
-    int service = gotdata->service;
+    gint service = gotdata->service;
 
-    int icon_id;
+    gint icon_id;
     icon_data *data = NULL;
 
     twitter_debug("called: service = %d\n", service);
@@ -1315,7 +1315,7 @@
 }
 
 static void
-request_icon(const char *user_name, int service)
+request_icon(const char *user_name, gint service)
 {
     gchar *url = NULL;
 
@@ -1449,7 +1449,7 @@
 }
 
 static void
-mark_icon_for_user(GtkTextMark *mark, const gchar *user_name, int service)
+mark_icon_for_user(GtkTextMark *mark, const gchar *user_name, gint service)
 {
     icon_data *data = NULL;
 
@@ -1496,8 +1496,8 @@
     GtkIMHtml *imhtml;
     GtkTextBuffer *text_buffer;
     GtkTextIter inserting_point;
-    int icon_id;
-    int service = get_service_type(conv);
+    gint icon_id;
+    gint service = get_service_type(conv);
     icon_data *data = NULL;
 
     twitter_debug("called\n");