[glade3/project-tree-model] Added ChangeLog entry for Johannes's work, fixed some compile warnings.



commit bea7f054315177e7a3da7b36d8e64fe4e2220ce4
Author: Tristan Van Berkom <tvb gnome org>
Date:   Fri May 14 16:45:13 2010 -0400

    Added ChangeLog entry for Johannes's work, fixed some compile warnings.

 ChangeLog                     |   19 ++++++++++++++++++-
 gladeui/glade-inspector.c     |    3 ++-
 gladeui/glade-signal-editor.c |    1 -
 3 files changed, 20 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index a0f56a5..c78476e 100644
--- a/ChangeLog
+++ b/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),
diff --git a/gladeui/glade-inspector.c b/gladeui/glade-inspector.c
index e9735a3..ae85d48 100644
--- a/gladeui/glade-inspector.c
+++ b/gladeui/glade-inspector.c
@@ -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
diff --git a/gladeui/glade-signal-editor.c b/gladeui/glade-signal-editor.c
index b33bf78..d75ce4b 100644
--- a/gladeui/glade-signal-editor.c
+++ b/gladeui/glade-signal-editor.c
@@ -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);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]