Strip more double leading spaces

This commit is contained in:
Colomban Wendling 2014-04-27 04:31:28 +02:00
parent edaa6f713f
commit 67ae770736

View File

@ -103,6 +103,7 @@ signal void (*document_save)(GObject *obj, GeanyDocument *doc, gpointer user_dat
/** Sent after the filetype of a document has been changed.
*
* The previous filetype object is passed but it can be NULL (e.g. at startup).
* The new filetype can be read with: @code
* GeanyFiletype *ft = doc->file_type;
@ -132,6 +133,7 @@ signal void (*document_activate)(GObject *obj, GeanyDocument *doc, gpointer user
signal void (*document_close)(GObject *obj, GeanyDocument *doc, gpointer user_data);
/** Sent after a project is opened but before session files are loaded.
*
* @param obj a GeanyObject instance, should be ignored.
* @param config an exising GKeyFile object which can be used to read and write data.
* It must not be closed or freed.
@ -142,6 +144,7 @@ signal void (*project_open)(GObject *obj, GKeyFile *config, gpointer user_data);
/** Sent when a project is saved(happens when the project is created, the properties
* dialog is closed or Geany is exited). This signal is emitted shortly before Geany
* will write the contents of the GKeyFile to the disc.
*
* @param obj a GeanyObject instance, should be ignored.
* @param config an exising GKeyFile object which can be used to read and write data.
* It must not be closed or freed.
@ -150,6 +153,7 @@ signal void (*project_open)(GObject *obj, GKeyFile *config, gpointer user_data);
signal void (*project_save)(GObject *obj, GKeyFile *config, gpointer user_data);
/** Sent after a project is closed.
*
* @param obj a GeanyObject instance, should be ignored.
* @param user_data user data.
*/
@ -157,6 +161,7 @@ signal void (*project_close)(GObject *obj, gpointer user_data);
/** Sent after a project dialog is opened but before it is displayed. Plugins
* can append their own project settings tabs by using this signal.
*
* @param obj a GeanyObject instance, should be ignored.
* @param notebook a GtkNotebook instance that can be used by plugins to append their
* settings tabs.
@ -167,6 +172,7 @@ signal void (*project_dialog_open)(GObject *obj, GtkWidget *notebook, gpointer u
/** Sent when the settings dialog is confirmed by the user. Plugins can use
* this signal to read the settings widgets previously added by using the
* @c project-dialog-open signal.
*
* @warning The dialog will still be running afterwards if the user chose 'Apply'.
* @param obj a GeanyObject instance, should be ignored.
* @param notebook a GtkNotebook instance that can be used by plugins to read their
@ -177,6 +183,7 @@ signal void (*project_dialog_confirmed)(GObject *obj, GtkWidget *notebook, gpoin
/** Sent before project dialog is closed. By using this signal, plugins can remove
* tabs previously added in project-dialog-open signal handler.
*
* @param obj a GeanyObject instance, should be ignored.
* @param notebook a GtkNotebook instance that can be used by plugins to remove
* settings tabs previously added in the project-dialog-open signal handler.
@ -209,7 +216,7 @@ signal void (*build_start)(GObject *obj, gpointer user_data);
*
* @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.
* where the popup menu will be opened.
* @param click_pos the cursor position where the popup will be opened.
* @param doc the current document.
* @param user_data user data.
@ -218,6 +225,7 @@ signal void (*update_editor_menu)(GObject *obj, const gchar *word, gint pos, Gea
gpointer user_data);
/** Sent whenever something in the editor widget changes.
*
* E.g. Character added, fold level changes, clicks to the line number margin.
* A detailed description of possible notifications and the SCNotification can be found at
* http://www.scintilla.org/ScintillaDoc.html#Notifications.