summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Borelli <pborelli@src.gnome.org>2004-10-07 17:21:29 +0000
committerPaolo Borelli <pborelli@src.gnome.org>2004-10-07 17:21:29 +0000
commitbca2011ad7f02b484dc47619a9cc94f8037af9d6 (patch)
tree1bd6ff331cb5ec27613961b633a05bc864d001b3
parent139f455e881d4e8accc88b7330ba1c71a7f992e9 (diff)
downloadglade-bca2011ad7f02b484dc47619a9cc94f8037af9d6.tar.gz
minor addition to INTERNALS.
-rw-r--r--INTERNALS5
-rw-r--r--src/glade-project-window.c1
2 files changed, 5 insertions, 1 deletions
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));