SF.net SVN: geany:[3439] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Sat Jan 3 13:03:42 UTC 2009


Revision: 3439
          http://geany.svn.sourceforge.net/geany/?rev=3439&view=rev
Author:   ntrel
Date:     2009-01-03 13:03:42 +0000 (Sat, 03 Jan 2009)

Log Message:
-----------
Remove geanyobject.h includes.
Use GObject instead of unused GeanyObject argument.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/callbacks.c
    trunk/src/document.c
    trunk/src/editor.c
    trunk/src/filetypes.c
    trunk/src/keyfile.c
    trunk/src/main.c
    trunk/src/plugins.c
    trunk/src/project.c
    trunk/src/symbols.c
    trunk/src/toolbar.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/ChangeLog	2009-01-03 13:03:42 UTC (rev 3439)
@@ -8,6 +8,11 @@
  - Code changes:
    Move geany_object extern to geany.h.
    Remove CallbacksData struct.
+ * src/toolbar.c, src/project.c, src/callbacks.c, src/keyfile.c,
+   src/filetypes.c, src/document.c, src/plugins.c, src/main.c,
+   src/editor.c, src/symbols.c:
+   Remove geanyobject.h includes.
+   Use GObject instead of unused GeanyObject argument.
 
 
 2009-01-02  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/src/callbacks.c
===================================================================
--- trunk/src/callbacks.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/callbacks.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -66,7 +66,6 @@
 #include "log.h"
 #include "toolbar.h"
 
-#include "geanyobject.h"
 
 #ifdef HAVE_VTE
 # include "vte.h"

Modified: trunk/src/document.c
===================================================================
--- trunk/src/document.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/document.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -65,7 +65,6 @@
 #include "vte.h"
 #include "build.h"
 #include "symbols.h"
-#include "geanyobject.h"
 #include "highlighting.h"
 #include "navqueue.h"
 #include "win32.h"

Modified: trunk/src/editor.c
===================================================================
--- trunk/src/editor.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/editor.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -54,7 +54,6 @@
 #include "dialogs.h"
 #include "symbols.h"
 #include "callbacks.h"
-#include "geanyobject.h"
 #include "templates.h"
 #include "keybindings.h"
 #include "project.h"
@@ -642,7 +641,7 @@
 }
 
 
-static gboolean on_editor_notify(G_GNUC_UNUSED GeanyObject *object, GeanyEditor *editor,
+static gboolean on_editor_notify(G_GNUC_UNUSED GObject *object, GeanyEditor *editor,
 								 SCNotification *nt, G_GNUC_UNUSED gpointer data)
 {
 	ScintillaObject *sci = editor->sci;

Modified: trunk/src/filetypes.c
===================================================================
--- trunk/src/filetypes.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/filetypes.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -40,7 +40,6 @@
 #include "utils.h"
 #include "sciwrappers.h"
 #include "ui_utils.h"
-#include "geanyobject.h"
 
 #include <stdlib.h>
 

Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/keyfile.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -60,7 +60,6 @@
 #include "templates.h"
 #include "toolbar.h"
 #include "stash.h"
-#include "geanyobject.h"
 
 
 /* some default settings which are used at the very first start of Geany to fill

Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/main.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -73,7 +73,6 @@
 #include "plugins.h"
 #include "printing.h"
 #include "toolbar.h"
-#include "geanyobject.h"
 
 #ifdef HAVE_SOCKET
 # include "socket.h"

Modified: trunk/src/plugins.c
===================================================================
--- trunk/src/plugins.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/plugins.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -49,7 +49,6 @@
 #include "dialogs.h"
 #include "msgwindow.h"
 #include "prefs.h"
-#include "geanyobject.h"
 #include "geanywraplabel.h"
 #include "build.h"
 #include "encodings.h"

Modified: trunk/src/project.c
===================================================================
--- trunk/src/project.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/project.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -45,7 +45,6 @@
 # include "win32.h"
 #endif
 #include "build.h"
-#include "geanyobject.h"
 #include "interface.h"
 #include "editor.h"
 #include "stash.h"

Modified: trunk/src/symbols.c
===================================================================
--- trunk/src/symbols.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/symbols.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -50,7 +50,6 @@
 #include "ui_utils.h"
 #include "editor.h"
 #include "sciwrappers.h"
-#include "geanyobject.h"
 
 
 const guint TM_GLOBAL_TYPE_MASK =

Modified: trunk/src/toolbar.c
===================================================================
--- trunk/src/toolbar.c	2009-01-03 12:54:13 UTC (rev 3438)
+++ trunk/src/toolbar.c	2009-01-03 13:03:42 UTC (rev 3439)
@@ -34,7 +34,6 @@
 #include "utils.h"
 #include "dialogs.h"
 #include "document.h"
-#include "geanyobject.h"
 #include "geanymenubuttonaction.h"
 #include "geanyentryaction.h"
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list