From afa73000063d7c3eb94ccc7b423c8a7bea28f9a5 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 12 Jul 2001 22:27:00 +0000 Subject: 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) --- source3/client/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client') diff --git a/source3/client/tree.c b/source3/client/tree.c index 5c2ced5e02..d4f286ef56 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"); -- cgit