comparison console/libgnt/gntcheckbox.c @ 14693:ae0136b0a3ae

[gaim-migrate @ 17445] Patch #1569730 from Richard Nelson (wabz): "This patch adds a "Clear" button, timestamp and pause options, and stops it scrolling down if it's scrolled up." and "Also gives the debug window a name, so window managers can more easily have their way with it." These changes make the debug window a whole lot more usable. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 08 Oct 2006 03:56:06 +0000
parents 3ac156db9cb6
children bfcdd361357e
comparison
equal deleted inserted replaced
14692:dd0c43d42394 14693:ae0136b0a3ae
106 } 106 }
107 107
108 static void 108 static void
109 gnt_check_box_init(GTypeInstance *instance, gpointer class) 109 gnt_check_box_init(GTypeInstance *instance, gpointer class)
110 { 110 {
111 GNT_WIDGET_SET_FLAGS(GNT_WIDGET(instance), GNT_WIDGET_NO_BORDER | GNT_WIDGET_NO_SHADOW); 111 GntWidget *widget = GNT_WIDGET(instance);
112 widget->priv.minh = 1;
113 widget->priv.minw = 4;
114 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_NO_BORDER | GNT_WIDGET_NO_SHADOW);
112 GNTDEBUG; 115 GNTDEBUG;
113 } 116 }
114 117
115 /****************************************************************************** 118 /******************************************************************************
116 * GntCheckBox API 119 * GntCheckBox API