summaryrefslogtreecommitdiff
path: root/src/terminal-window.c
diff options
context:
space:
mode:
authorSorokin Alexei <[email protected]>2016-03-08 02:45:13 +0300
committerSorokin Alexei <[email protected]>2016-03-08 02:45:13 +0300
commita3d1c5f081cf3cf820f6854384ad17ea2cc9c79a (patch)
treedc54743f40544b16c5f175d2b6b5cd69c8d9177b /src/terminal-window.c
parentc0efce1fb03875877ddc9e7d3a7aca77b10fd434 (diff)
downloadmate-terminal-a3d1c5f081cf3cf820f6854384ad17ea2cc9c79a.tar.bz2
mate-terminal-a3d1c5f081cf3cf820f6854384ad17ea2cc9c79a.tar.xz
remove debug callbacks for deprecated size-request signal
Diffstat (limited to 'src/terminal-window.c')
-rw-r--r--src/terminal-window.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/terminal-window.c b/src/terminal-window.c
index 9bcd397..b2b1295 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -1518,15 +1518,6 @@ terminal_window_accel_activate_cb (GtkAccelGroup *accel_group,
#ifdef MATE_ENABLE_DEBUG
static void
-terminal_window_size_request_cb (GtkWidget *widget,
- GtkRequisition *req)
-{
- _terminal_debug_print (TERMINAL_DEBUG_GEOMETRY,
- "[window %p] size-request result %d : %d\n",
- widget, req->width, req->height);
-}
-
-static void
terminal_window_size_allocate_cb (GtkWidget *widget,
GtkAllocation *allocation)
{
@@ -2071,7 +2062,6 @@ terminal_window_init (TerminalWindow *window)
#ifdef MATE_ENABLE_DEBUG
_TERMINAL_DEBUG_IF (TERMINAL_DEBUG_GEOMETRY)
{
- g_signal_connect_after (window, "size-request", G_CALLBACK (terminal_window_size_request_cb), NULL);
g_signal_connect_after (window, "size-allocate", G_CALLBACK (terminal_window_size_allocate_cb), NULL);
}
#endif