chiark
/
gitweb
/
~mdw
/
disorder
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
baaccf8
)
Correct row count in login window
author
Richard Kettlewell
<rjk@greenend.org.uk>
Sat, 28 Jun 2008 18:04:29 +0000
(19:04 +0100)
committer
Richard Kettlewell
<rjk@greenend.org.uk>
Sat, 28 Jun 2008 18:04:29 +0000
(19:04 +0100)
disobedience/login.c
patch
|
blob
|
blame
|
history
diff --git
a/disobedience/login.c
b/disobedience/login.c
index 63e284bd8810a536992c37b313c445e449fc5512..df826724b0996022d4413012798204b309b57462 100644
(file)
--- a/
disobedience/login.c
+++ b/
disobedience/login.c
@@
-226,7
+226,7
@@
void login_box(void) {
G_CALLBACK(gtk_widget_destroyed), &login_window);
gtk_window_set_title(GTK_WINDOW(login_window), "Login Details");
/* Construct the form */
G_CALLBACK(gtk_widget_destroyed), &login_window);
gtk_window_set_title(GTK_WINDOW(login_window), "Login Details");
/* Construct the form */
- table = gtk_table_new(NLWIS
+ 1
/*rows*/, 2/*columns*/, FALSE/*homogenous*/);
+ table = gtk_table_new(NLWIS/*rows*/, 2/*columns*/, FALSE/*homogenous*/);
gtk_widget_set_style(table, tool_style);
for(n = 0; n < NLWIS; ++n) {
label = gtk_label_new(lwis[n].description);
gtk_widget_set_style(table, tool_style);
for(n = 0; n < NLWIS; ++n) {
label = gtk_label_new(lwis[n].description);