~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to src/empathy-call-window.c

Tags: upstream-2.29.4
ImportĀ upstreamĀ versionĀ 2.29.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include <libempathy-gtk/empathy-video-src.h>
44
44
#include <libempathy-gtk/empathy-ui-utils.h>
45
45
#include <libempathy-gtk/empathy-sound.h>
 
46
#include <libempathy-gtk/empathy-geometry.h>
46
47
 
47
48
#define DEBUG_FLAG EMPATHY_DEBUG_VOIP
48
49
#include <libempathy/empathy-debug.h>
1076
1077
 
1077
1078
  g_object_ref (priv->ui_manager);
1078
1079
  g_object_unref (gui);
 
1080
 
 
1081
  empathy_geometry_bind (GTK_WINDOW (self), "call-window");
1079
1082
}
1080
1083
 
1081
1084
/* Instead of specifying a width and a height, we specify only one size. That's
2621
2624
  g_signal_handlers_block_by_func (priv->tool_button_camera_on,
2622
2625
      tool_button_camera_on_toggled_cb, self);
2623
2626
  g_signal_handlers_block_by_func (priv->action_camera,
2624
 
      tool_button_camera_on_toggled_cb, self);
 
2627
      action_camera_change_cb, self);
2625
2628
}
2626
2629
 
2627
2630
static void
2636
2639
  g_signal_handlers_unblock_by_func (priv->tool_button_camera_on,
2637
2640
      tool_button_camera_on_toggled_cb, self);
2638
2641
  g_signal_handlers_unblock_by_func (priv->action_camera,
2639
 
      tool_button_camera_on_toggled_cb, self);
 
2642
      action_camera_change_cb, self);
2640
2643
}