~ubuntu-branches/ubuntu/utopic/anjuta/utopic-proposed

« back to all changes in this revision

Viewing changes to libanjuta/interfaces/ianjuta-editor.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Jackson Doak
  • Date: 2014-07-12 15:17:39 UTC
  • mfrom: (1.4.14)
  • Revision ID: package-import@ubuntu.com-20140712151739-p9xy0ntlgbpm2nxq
Tags: 2:3.12.0-1
* Team upload.

[ Jackson Doak ]
* New upstream release
* Drop 03_valac_0.22.patch, fixed upstream\
* debian/control:
  - Bump b-dep version on libgtk-3-dev (>= 3.6.0), libglib2.0-dev (>= 2.34.0)
  - Bump stardards-version to 3.9.5. No changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
710
710
/**
711
711
 * ianjuta_editor_set_indentsize:
712
712
 * @obj: Self
713
 
 * @tabsize: Indentation size in spaces
 
713
 * @indentsize: Indentation size in spaces
714
714
 * @err: Error propagation and reporting
715
715
 *
716
716
 * Sets the indentation size of the editor.
905
905
 
906
906
 
907
907
                /**
908
 
                 * IAnjutaEditor::code-added:
909
 
                 * @position: The iter position where @ch is added.
910
 
                 * @code: The code that has been added.
 
908
                 * IAnjutaEditor::code-changed:
 
909
                 * @position: The iter position where code has been changed or NULL.
 
910
                 * @code: The code that has been added or NULL.
911
911
                 * @obj: Self
912
912
                 *
913
 
                 * This signal is emitted when code is added inside the editor.
914
 
                 * The newly added code is @code which has been inserted at @position.
 
913
                 * This signal is emitted when code is changed inside the editor.
 
914
                 * When such information is availabe, @position stores the position where @code was added.
915
915
                 */
916
 
                g_signal_new ("code-added",
 
916
                g_signal_new ("code-changed",
917
917
                        IANJUTA_TYPE_EDITOR,
918
918
                        G_SIGNAL_RUN_LAST,
919
 
                        G_STRUCT_OFFSET (IAnjutaEditorIface, code_added),
 
919
                        G_STRUCT_OFFSET (IAnjutaEditorIface, code_changed),
920
920
                        NULL, NULL,
921
921
                        libanjuta_iface_cclosure_marshal_VOID__OBJECT_STRING,
922
922
                        G_TYPE_NONE,
943
943
 
944
944
 
945
945
                /**
946
 
                 * IAnjutaEditor::glade-member-add:
 
946
                 * IAnjutaEditor::glade-callback-add:
947
947
                 * @widget_typename: Name of the type of the widget.
948
948
                 * @signal_name: Name of the signal.
949
949
                 * @handler_name: Name of the signal handler.