ekiga r6830 - in trunk: . lib/engine/gui/gtk-core
- From: jpuydt svn gnome org
- To: svn-commits-list gnome org
- Subject: ekiga r6830 - in trunk: . lib/engine/gui/gtk-core
- Date: Fri, 5 Sep 2008 12:08:14 +0000 (UTC)
Author: jpuydt
Date: Fri Sep 5 12:08:14 2008
New Revision: 6830
URL: http://svn.gnome.org/viewvc/ekiga?rev=6830&view=rev
Log:
Fixed bug #550959
Modified:
trunk/ChangeLog
trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
Modified: trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
==============================================================================
--- trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp (original)
+++ trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp Fri Sep 5 12:08:14 2008
@@ -797,13 +797,13 @@
gtk_table_attach (GTK_TABLE (fields), label,
0, 1, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
gtk_table_attach (GTK_TABLE (fields), widget,
1, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
submitter = new TextSubmitter (name, description, widget);
@@ -841,13 +841,13 @@
gtk_table_attach (GTK_TABLE (fields), label,
0, 1, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
gtk_table_attach (GTK_TABLE (fields), widget,
1, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
submitter = new PrivateTextSubmitter (name, description, widget);
@@ -977,8 +977,8 @@
gtk_table_attach (GTK_TABLE (fields), label,
0, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
/* The GtkListStore containing the choices */
@@ -1034,8 +1034,8 @@
gtk_table_resize (GTK_TABLE (fields), rows, 2);
gtk_table_attach (GTK_TABLE (fields), frame,
0, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
submitter = new MultipleChoiceSubmitter (name, description, choices, tree_view);
@@ -1077,8 +1077,8 @@
gtk_table_attach (GTK_TABLE (fields), label,
0, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
/* The GtkListStore containing the values */
@@ -1143,8 +1143,8 @@
gtk_table_resize (GTK_TABLE (fields), rows, 2);
gtk_table_attach (GTK_TABLE (fields), frame,
0, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
hbox = gtk_hbox_new (FALSE, 2);
@@ -1165,8 +1165,8 @@
gtk_table_resize (GTK_TABLE (fields), rows, 2);
gtk_table_attach (GTK_TABLE (fields), hbox,
0, 2, rows - 1, rows,
- (GtkAttachOptions) (GTK_FILL),
- (GtkAttachOptions) (GTK_FILL),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
+ (GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
0, 0);
submitter = new EditableSetSubmitter (name, description, tree_view);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]