mirror of
https://gitlab.gnome.org/GNOME/glade.git
synced 2025-11-28 00:05:12 -05:00
Added ChangeLog entry for Johannes's work, fixed some compile warnings.
This commit is contained in:
parent
ab6e2bc223
commit
473df94ba6
19
ChangeLog
19
ChangeLog
@ -1,10 +1,27 @@
|
||||
2010-05-14 Johannes Schmid <jhs@jsschmid.de>
|
||||
|
||||
* gladeui/glade-app.c: Allow destruction/recreation of the GladeApp object
|
||||
|
||||
* gladeui/glade-signal-editor.[ch]: Some refactoring to make the signal editor
|
||||
object itself a dockable widget and remove some cruft api.
|
||||
|
||||
* gladeui/glade-project.[ch]: Implement GtkTreeModel
|
||||
|
||||
* gladeui/glade-base-editor.c, gladeui/glade-editor.c: Adjust for new signal
|
||||
editor api
|
||||
|
||||
* gladeui/glade-inspector.c: Remove duplicate store and use the the GladeProject
|
||||
as the store directly.
|
||||
|
||||
* src/glade-window.c: Removed some code related to old signal editor api cruft.
|
||||
|
||||
2010-05-01 Javier Jardón <jjardon@gnome.org>
|
||||
|
||||
* gladeui/glade-signal-editor.c: Do not show the event box in signal editor
|
||||
|
||||
2010-04-01 Tristan Van Berkom <tvb@gnome.org>
|
||||
|
||||
* gladeui/glade-project.c:
|
||||
* gladeui/glade-project.c:
|
||||
- Display GTK+ in caps and always assume GTK+ as a project dependency
|
||||
(so that empty projects still depend on GTK+ for display purposes).
|
||||
- Stop showing preferences at project new time (now we have tooltips that tell you this stuff),
|
||||
|
||||
@ -716,7 +716,8 @@ update_project_completion (GladeProject *project,
|
||||
|
||||
items = glade_project_get_objects (priv->project);
|
||||
|
||||
g_completion_add_items (priv->completion, items);
|
||||
/* GCompletion API should take 'const GList *' */
|
||||
g_completion_add_items (priv->completion, (GList *)items);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
@ -1442,7 +1442,6 @@ static void
|
||||
glade_signal_editor_dispose (GObject *object)
|
||||
{
|
||||
GladeSignalEditor *self = GLADE_SIGNAL_EDITOR (object);
|
||||
GladeSignalEditorPrivate *priv = self->priv;
|
||||
|
||||
glade_signal_editor_load_widget (self, NULL);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user