Skip to content
Snippets Groups Projects
Commit 644b249c authored by Rafaël Carré's avatar Rafaël Carré
Browse files

Remove unused variables and functions

parent a81f45b7
Branches
Tags
No related merge requests found
......@@ -1369,7 +1369,7 @@ void sflphone_fill_conference_list (void)
void sflphone_fill_history (void)
{
const gchar **entries, **history_entries;
const gchar **entries;
gchar *current_entry;
callable_obj_t *history_call, *call;
conference_obj_t *history_conf, *conf;
......@@ -1436,8 +1436,6 @@ void sflphone_fill_history (void)
entries++;
}
entries = history_entries;
// fill
n = calllist_get_size(history);
DEBUG("CALL SIZE: %d", n);
......
......@@ -33,7 +33,6 @@
#include "logger.h"
static gint is_confID_confstruct(gconstpointer, gconstpointer);
static gchar *generate_conf_id (void);
static gint is_confID_confstruct (gconstpointer a, gconstpointer b)
{
......@@ -46,17 +45,6 @@ static gint is_confID_confstruct (gconstpointer a, gconstpointer b)
}
}
static gchar *generate_conf_id (void)
{
gchar *conf_id;
conf_id = g_new0 (gchar, 30);
g_sprintf (conf_id, "%d", rand());
return conf_id;
}
void conferencelist_init(calltab_t *tab)
{
if(tab == NULL) {
......
......@@ -57,7 +57,6 @@ static GtkWidget * dialpad = NULL;
static GtkWidget * speaker_control = NULL;
static GtkWidget * mic_control = NULL;
static GtkWidget * statusBar = NULL;
static GtkWidget * filterEntry = NULL;
static PidginScrollBook *embedded_error_notebook;
static gchar *status_current_message = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment