minor addition to INTERNALS.

This commit is contained in:
Paolo Borelli 2004-10-07 17:21:29 +00:00
parent 139f455e88
commit bca2011ad7
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -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));