SF.net SVN: geany:[5710] trunk/doc/pluginsignals.c

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Apr 11 14:40:28 UTC 2011


Revision: 5710
          http://geany.svn.sourceforge.net/geany/?rev=5710&view=rev
Author:   ntrel
Date:     2011-04-11 14:40:27 +0000 (Mon, 11 Apr 2011)

Log Message:
-----------
Remove notes about which headers to include as geanyplugin.h should be used instead.

Modified Paths:
--------------
    trunk/doc/pluginsignals.c

Modified: trunk/doc/pluginsignals.c
===================================================================
--- trunk/doc/pluginsignals.c	2011-04-11 14:26:51 UTC (rev 5709)
+++ trunk/doc/pluginsignals.c	2011-04-11 14:40:27 UTC (rev 5710)
@@ -64,8 +64,6 @@
 
 /** Sent when a new document is created.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the new document.
  *  @param user_data user data.
@@ -74,8 +72,6 @@
 
 /** Sent when a new document is opened.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the opened document.
  *  @param user_data user data.
@@ -84,8 +80,6 @@
 
 /** Sent when an existing document is reloaded.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the re-opened document.
  *  @param user_data user data.
@@ -96,8 +90,6 @@
 
 /** Sent before a document is saved.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the document to be saved.
  *  @param user_data user data.
@@ -106,8 +98,6 @@
 
 /** Sent when a new document is saved.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the saved document.
  *  @param user_data user data.
@@ -130,8 +120,6 @@
 
 /** Sent when switching notebook pages.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the current document.
  *  @param user_data user data.
@@ -140,8 +128,6 @@
 
 /** Sent before closing a document.
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param doc the document about to be closed.
  *  @param user_data user data.
@@ -215,8 +201,6 @@
  *  @note You can add menu items from @c plugin_init() using @c geany->main_widgets->editor_menu,
  *  remembering to destroy them in @c plugin_cleanup().
  *
- *  You need to include "document.h" for the declaration of GeanyDocument.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param word the current word (in UTF-8 encoding) below the cursor position
 		   where the popup menu will be opened.
@@ -250,9 +234,6 @@
  *           care about the return value; make sure to return TRUE only if it is necessary
  *           and in the correct situations.
  *
- *  You need to include "editor.h" for the declaration of GeanyEditor and "Scintilla.h" for
- *  SCNotification.
- *
  *  @param obj a GeanyObject instance, should be ignored.
  *  @param editor The current GeanyEditor.
  *  @param nt A pointer to the SCNotification struct which holds additional information for


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