summaryrefslogtreecommitdiff
path: root/gtk/gtklayout.c
diff options
context:
space:
mode:
authorChristian Dywan <christian@twotoasts.de>2009-10-07 17:42:55 +0200
committerJavier Jardón <jjardon@gnome.org>2010-05-03 01:39:49 +0200
commit2f1a59c0f2ba82af7ccd8bdd82b7dc066e6e9c08 (patch)
treed93d2c680fbde5ed6e1b1d91c3467fce3c714031 /gtk/gtklayout.c
parent7fd68866fe3592d54a4aa812b7300b7520fce85b (diff)
downloadgtk+-2f1a59c0f2ba82af7ccd8bdd82b7dc066e6e9c08.tar.gz
Remove deprecated GtkLayout functions
Diffstat (limited to 'gtk/gtklayout.c')
-rw-r--r--gtk/gtklayout.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/gtk/gtklayout.c b/gtk/gtklayout.c
index 7e3e0b9afb..868347f645 100644
--- a/gtk/gtklayout.c
+++ b/gtk/gtklayout.c
@@ -534,42 +534,6 @@ gtk_layout_get_size (GtkLayout *layout,
*height = layout->height;
}
-/**
- * gtk_layout_freeze:
- * @layout: a #GtkLayout
- *
- * This is a deprecated function, it doesn't do anything useful.
- **/
-void
-gtk_layout_freeze (GtkLayout *layout)
-{
- g_return_if_fail (GTK_IS_LAYOUT (layout));
-
- layout->freeze_count++;
-}
-
-/**
- * gtk_layout_thaw:
- * @layout: a #GtkLayout
- *
- * This is a deprecated function, it doesn't do anything useful.
- **/
-void
-gtk_layout_thaw (GtkLayout *layout)
-{
- g_return_if_fail (GTK_IS_LAYOUT (layout));
-
- if (layout->freeze_count)
- {
- if (!(--layout->freeze_count))
- {
- gtk_widget_queue_draw (GTK_WIDGET (layout));
- gdk_window_process_updates (GTK_WIDGET (layout)->window, TRUE);
- }
- }
-
-}
-
/* Basic Object handling procedures
*/
static void