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

« back to all changes in this revision

Viewing changes to gnome/src/imwindow.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:
30
30
 *  as that of the covered work.
31
31
 */
32
32
 
 
33
#ifdef HAVE_CONFIG_H
33
34
#include "config.h"
 
35
#endif
 
36
 
 
37
#include "gtk2_wrappers.h"
34
38
#include "eel-gconf-extensions.h"
35
39
#include "logger.h"
36
40
#include "imwindow.h"
41
45
#include <sys/stat.h>
42
46
 
43
47
/** Local variables */
44
 
static GtkWidget *im_window = NULL;
45
 
static GtkWidget *im_notebook = NULL;
46
 
 
 
48
static GtkWidget *im_window;
 
49
static GtkWidget *im_notebook;
47
50
 
48
51
static void im_window_init();
49
52