From bca2011ad7f02b484dc47619a9cc94f8037af9d6 Mon Sep 17 00:00:00 2001 From: Paolo Borelli Date: Thu, 7 Oct 2004 17:21:29 +0000 Subject: [PATCH] minor addition to INTERNALS. --- INTERNALS | 5 +++++ src/glade-project-window.c | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/INTERNALS b/INTERNALS index ed3dbae6..c2456eac 100644 --- a/INTERNALS +++ b/INTERNALS @@ -61,6 +61,11 @@ Here are some of the goals which were considered when designing glade3 so that it would be possible without too much work to embed them in another program (e.g. an IDE). + * get rid of code generation. Code generation is considered a bad idea, + the way to go is to use libglade to dinamically load the GUI from the + xml file. If someone really wants to have code generation, it really + belongs in an external program which generates code from the xml file. + * FIXME: ADD OTHERS diff --git a/src/glade-project-window.c b/src/glade-project-window.c index b4a685c0..3f7a03da 100644 --- a/src/glade-project-window.c +++ b/src/glade-project-window.c @@ -268,7 +268,6 @@ gpw_confirm_close_project (GladeProject *project) GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_SAVE, GTK_RESPONSE_YES, NULL); - gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_YES); ret = gtk_dialog_run (GTK_DIALOG (dialog));