~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to gnome/src/contacts/searchbar.c

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-05-19 21:46:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519214637-la8rbrford5kj6m3
Tags: 1.1.0-1
* New upstream release 
  - Fixes "FTBFS with libccrtp-dev/2.0.2 from experimental" (Closes: #663282)
* NEW Maintainer: Debian VoIP Team - Thanks Francois for your work.
  - (Closes: #665789: O: sflphone -- SIP and IAX2 compatible VoIP phone)
* Added Build-Depends: libdbus-c++-bin
* Add gcc47-fixes.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 *  as that of the covered work.
32
32
 */
33
33
 
 
34
#include <glib/gi18n.h>
 
35
#include "gtk2_wrappers.h"
34
36
#include "searchbar.h"
35
37
#include "calltree.h"
36
38
#include "calltab.h"
45
47
static GtkWidget * addressbookentry;
46
48
 
47
49
static GtkWidget * cbox;
48
 
static GtkListStore * liststore = NULL;
 
50
static GtkListStore * liststore;
49
51
 
50
52
static gint cboxSignalId;
51
53
 
52
 
static GtkWidget *menu = NULL;
 
54
static GtkWidget *menu;
53
55
 
54
56
/**
55
57
 * Searchbar icons
56
58
 */
57
 
static GdkPixbuf *incoming_pixbuf = NULL;
58
 
static GdkPixbuf *outgoing_pixbuf = NULL;
59
 
static GdkPixbuf *missed_pixbuf = NULL;
 
59
static GdkPixbuf *incoming_pixbuf;
 
60
static GdkPixbuf *outgoing_pixbuf;
 
61
static GdkPixbuf *missed_pixbuf;
60
62
 
61
63
void searchbar_addressbook_activated(GtkEntry *entry, gchar *arg1 UNUSED, gpointer data UNUSED)
62
64
{