diff options
author | Tim Potter <tpot@samba.org> | 2001-07-12 22:27:00 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-07-12 22:27:00 +0000 |
commit | afa73000063d7c3eb94ccc7b423c8a7bea28f9a5 (patch) | |
tree | 3eadae0886f758a32b27b85b574130e4d4dc034d /source3/client/tree.c | |
parent | 5f4a1aa3c33642c49a9f522c514e48bf40c18ff4 (diff) | |
download | samba-afa73000063d7c3eb94ccc7b423c8a7bea28f9a5.tar.gz samba-afa73000063d7c3eb94ccc7b423c8a7bea28f9a5.tar.xz samba-afa73000063d7c3eb94ccc7b423c8a7bea28f9a5.zip |
Changed instances of TRUE, FALSE to True, False as some compilers don't
have the first set of symbols.
(This used to be commit ad0cbfbd790bc5d6003ffcff2835d82fb0140625)
Diffstat (limited to 'source3/client/tree.c')
-rw-r--r-- | source3/client/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/tree.c b/source3/client/tree.c index 5c2ced5e02b..d4f286ef563 100644 --- a/source3/client/tree.c +++ b/source3/client/tree.c @@ -44,7 +44,7 @@ void error_message(gchar *message) { /* Create the widgets */ dialog = gtk_dialog_new(); - gtk_window_set_modal(GTK_WINDOW(dialog), TRUE); + gtk_window_set_modal(GTK_WINDOW(dialog), True); label = gtk_label_new (message); okay_button = gtk_button_new_with_label("Okay"); |