org.guifications.plugins: 3bc7fc506f0d7ff22660c1ada9be102663bfdbcc

grim at guifications.org grim at guifications.org
Fri Apr 4 22:15:15 CDT 2008


-----------------------------------------------------------------
Revision: 3bc7fc506f0d7ff22660c1ada9be102663bfdbcc
Ancestor: 3cdb4b0e775f82266864f85d7780ccb7ef1d90b0
Author: grim at guifications.org
Date: 2008-04-05T02:21:10
Branch: org.guifications.plugins

Modified files:
        manualsize/manualsize.c

ChangeLog: 

use gint rather than int


-----------------------------------------------------------------
This revision's diffstat output:
 manualsize.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
-------------- next part --------------
============================================================
--- manualsize/manualsize.c	74b0cf3a62d28b3695534aee7631b194b98eb353
+++ manualsize/manualsize.c	dfb6306993433306df7d3ea3ec4e40f9984beba7
@@ -43,7 +43,7 @@ find_placed_object(GtkWidget * w, int * 
 static GtkWidget *
 find_placed_object(GtkWidget * w, int * client_height) {
         GtkWidget * ret;
-        int border_width;
+        gint border_width;
         border_width = gtk_container_get_border_width( GTK_CONTAINER(w) );
         if ((w->allocation.height > 1)||(gtk_widget_get_parent(w)==NULL)) {
                 *client_height = w->allocation.height;
@@ -122,14 +122,14 @@ rebuild_container(PidginConversation * c
 	GtkWidget * vpaned = gtk_vpaned_new();
 	GtkNotebook * notebook = GTK_NOTEBOOK(get_notebook(top));
 	gboolean chat = (conv->active_conv->type == PURPLE_CONV_TYPE_CHAT);
-	int handle_size = 0;
-	int parent_area = 0;
-	int border_size = 0;
-	int new_pos;
+	gint handle_size = 0;
+	gint parent_area = 0;
+	gint border_size = 0;
+	gint new_pos;
 	GtkPositionType tabpos = -1;
 	GValue v;
 
-	int stored_height = (chat)?
+	gint stored_height = (chat)?
 		purple_prefs_get_int( "/plugins/manualsize/chat_entry_height" )
 		:
 		purple_prefs_get_int( "/plugins/manualsize/im_entry_height" );


More information about the Plugins-commits mailing list