mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
details fixed
This commit is contained in:
@ -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 ))
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user