AtkTable: Added missing ":" on one gi annotation
[platform/upstream/atk.git] / atk / atkeditabletext.h
old mode 100644 (file)
new mode 100755 (executable)
index 92a0ad6..f78f267
@@ -12,7 +12,9 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
  */
 
 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
@@ -69,28 +71,36 @@ struct _AtkEditableTextIface
   void   (* paste_text)           (AtkEditableText  *text,
                                    gint             position);
 };
+ATK_AVAILABLE_IN_ALL
 GType atk_editable_text_get_type (void);
 
 
+ATK_AVAILABLE_IN_ALL
 gboolean atk_editable_text_set_run_attributes (AtkEditableText          *text,
                                                AtkAttributeSet  *attrib_set,
                                                gint                    start_offset,
                                               gint             end_offset);
+ATK_AVAILABLE_IN_ALL
 void atk_editable_text_set_text_contents    (AtkEditableText  *text,
                                              const gchar      *string);
+ATK_AVAILABLE_IN_ALL
 void atk_editable_text_insert_text          (AtkEditableText  *text,
                                              const gchar      *string,
                                              gint             length,
                                              gint             *position);
+ATK_AVAILABLE_IN_ALL
 void atk_editable_text_copy_text            (AtkEditableText  *text,
                                              gint             start_pos,
                                              gint             end_pos);
+ATK_AVAILABLE_IN_ALL
 void atk_editable_text_cut_text             (AtkEditableText  *text,
                                              gint             start_pos,
                                              gint             end_pos);
+ATK_AVAILABLE_IN_ALL
 void atk_editable_text_delete_text          (AtkEditableText  *text,
                                              gint             start_pos,
                                              gint             end_pos);
+ATK_AVAILABLE_IN_ALL
 void atk_editable_text_paste_text           (AtkEditableText  *text,
                                              gint             position);