details fixed

This commit is contained in:
Emmanuel Milou
2008-10-03 12:14:25 -04:00
parent ba75f4c90d
commit 82e8789a63
3 changed files with 3 additions and 3 deletions

View File

@ -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 ))

View File

@ -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);
}

View File

@ -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);