From 82e8789a633e71826cf4f012ea240013b48f3bb3 Mon Sep 17 00:00:00 2001 From: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com> Date: Fri, 3 Oct 2008 12:14:25 -0400 Subject: [PATCH] details fixed --- sflphone-gtk/src/accountlist.c | 2 +- sflphone-gtk/src/dialpad.c | 2 +- sflphone-gtk/src/historyfilter.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sflphone-gtk/src/accountlist.c b/sflphone-gtk/src/accountlist.c index 34d482e333..8e9654eb86 100644 --- a/sflphone-gtk/src/accountlist.c +++ b/sflphone-gtk/src/accountlist.c @@ -214,7 +214,7 @@ guint account_list_get_registered_accounts( void ) { guint res = 0; - int i; + unsigned int i; for(i=0;i<account_list_get_size();i++) { if( account_list_get_nth( i ) -> state == ( ACCOUNT_STATE_REGISTERED )) diff --git a/sflphone-gtk/src/dialpad.c b/sflphone-gtk/src/dialpad.c index 71bee58bd5..7c757aa184 100644 --- a/sflphone-gtk/src/dialpad.c +++ b/sflphone-gtk/src/dialpad.c @@ -24,7 +24,7 @@ * button pressed event */ static void -dialpad_pressed (GtkWidget * widget, gpointer data) +dialpad_pressed (GtkWidget * widget UNUSED, gpointer data) { sflphone_keypad(0, (gchar*) data); } diff --git a/sflphone-gtk/src/historyfilter.c b/sflphone-gtk/src/historyfilter.c index aa17647f8c..8d3daecbd6 100644 --- a/sflphone-gtk/src/historyfilter.c +++ b/sflphone-gtk/src/historyfilter.c @@ -35,7 +35,7 @@ is_visible(GtkTreeModel* model, GtkTreeIter* iter, gpointer data UNUSED) { if( SHOW_SEARCHBAR ) { - GValue val = {0, }; + GValue val = {0,}; gchar* text; gchar* search = (gchar*)gtk_entry_get_text(GTK_ENTRY(filter_entry)); gtk_tree_model_get_value(GTK_TREE_MODEL(model), iter, 1, &val); -- GitLab