[vte] Update version in API docs for new/deprecated APIs



commit e45144f8a70244da43723349b09d9edf5f9d8d1f
Author: Christian Persch <chpe gnome org>
Date:   Sat Jan 30 14:14:19 2010 +0100

    Update version in API docs for new/deprecated APIs

 src/pty.c    |   40 ++++++++++++++++++++--------------------
 src/vte.c    |   24 ++++++++++++------------
 src/vtepty.h |    6 +++---
 3 files changed, 35 insertions(+), 35 deletions(-)
---
diff --git a/src/pty.c b/src/pty.c
index d50d12b..503b405 100644
--- a/src/pty.c
+++ b/src/pty.c
@@ -25,7 +25,7 @@
  * The terminal widget uses these functions to start commands with new controlling
  * pseudo-terminals and to resize pseudo-terminals.
  *
- * Since: 0.24
+ * Since: 0.26
  */
 
 #include <config.h>
@@ -177,7 +177,7 @@ typedef struct {
 /**
  * VtePty:
  *
- * Since: 0.24
+ * Since: 0.26
  */
 struct _VtePty {
         GObject parent_instance;
@@ -210,7 +210,7 @@ struct _VtePtyClass {
  *
  * FIXMEchpe
  *
- * Since: 0.24
+ * Since: 0.26
  */
 void
 vte_pty_child_setup (VtePty *pty)
@@ -602,7 +602,7 @@ __vte_pty_fork(VtePty *pty,
  *
  * Returns: %TRUE on success, %FALSE on failure with @error filled in
  *
- * Since: 0.24
+ * Since: 0.26
  */
 gboolean
 vte_pty_set_size(VtePty *pty,
@@ -661,7 +661,7 @@ vte_pty_set_size(VtePty *pty,
  *
  * Returns: %TRUE on success, %FALSE on failure with @error filled in
  *
- * Since: 0.24
+ * Since: 0.26
  */
 gboolean
 vte_pty_get_size(VtePty *pty,
@@ -1282,7 +1282,7 @@ _vte_pty_open_with_helper(VtePty *pty,
  * use of the info.  Linux 2.6.5 or so defines IUTF8 to make the line
  * discipline do multibyte backspace correctly.
  *
- * Since: 0.24
+ * Since: 0.26
  */
 void
 vte_pty_set_utf8(VtePty *pty,
@@ -1322,7 +1322,7 @@ vte_pty_set_utf8(VtePty *pty,
  * Cleans up the PTY, specifically any logging performed for the session.
  * The file descriptor to the PTY master remains open.
  *
- * Since: 0.24
+ * Since: 0.26
  */
 void
 vte_pty_close (VtePty *pty)
@@ -1555,7 +1555,7 @@ vte_pty_class_init (VtePtyClass *klass)
          * Controls how the session is recorded in lastlog, utmp, and wtmp,
          * and whether to use the GNOME PTY helper.
          *
-         * Since: 0.24
+         * Since: 0.26
          */
         g_object_class_install_property
                 (object_class,
@@ -1572,7 +1572,7 @@ vte_pty_class_init (VtePtyClass *klass)
          *
          * The file descriptor of the PTY master.
          *
-         * Since: 0.24
+         * Since: 0.26
          */
         g_object_class_install_property
                 (object_class,
@@ -1588,7 +1588,7 @@ vte_pty_class_init (VtePtyClass *klass)
          *
          * Whether the PTY is in UTF-8 mode.
          *
-         * Since: 0.24
+         * Since: 0.26
          */
         g_object_class_install_property
                 (object_class,
@@ -1604,7 +1604,7 @@ vte_pty_class_init (VtePtyClass *klass)
          * The value to set for the TERM environment variable
          * in vte_pty_child_setup().
          *
-         * Since: 0.24
+         * Since: 0.26
          */
         g_object_class_install_property
                 (object_class,
@@ -1625,7 +1625,7 @@ vte_pty_class_init (VtePtyClass *klass)
  *
  * Returns: the error domain for VTE PTY errors
  *
- * Since: 0.24
+ * Since: 0.26
  */
 GQuark
 vte_pty_error_quark(void)
@@ -1671,7 +1671,7 @@ vte_pty_error_quark(void)
  *
  * Returns: a new #VtePty, or %NULL on error with @error filled in
  *
- * Since: 0.24
+ * Since: 0.26
  */
 VtePty *
 vte_pty_new (VtePtyFlags flags,
@@ -1697,7 +1697,7 @@ vte_pty_new (VtePtyFlags flags,
  *
  * Returns: a new #VtePty for @fd
  *
- * Since: 0.24
+ * Since: 0.26
  */
 VtePty *
 vte_pty_new_foreign (int fd)
@@ -1745,7 +1745,7 @@ vte_pty_get_fd (VtePty *pty)
  * Sets what value of the TERM environment variable to set
  * when using vte_pty_child_setup().
  *
- * Since: 0.24
+ * Since: 0.26
  */
 void
 vte_pty_set_term (VtePty *pty,
@@ -1805,7 +1805,7 @@ get_vte_pty_for_fd (int fd)
  *
  * Returns: an open file descriptor for the pty master, -1 on failure
  *
- * Deprecated: 0.24: Use #VtePty together with fork() or the g_spawn_async() family of functions instead
+ * Deprecated: 0.26: Use #VtePty together with fork() or the g_spawn_async() family of functions instead
  */
 int
 _vte_pty_open(pid_t *child,
@@ -1880,7 +1880,7 @@ _vte_pty_open(pid_t *child,
  *
  * Returns: 0 on success, -1 on failure.
  *
- * Deprecated: 0.24: Use #VtePty and vte_pty_get_size() instead
+ * Deprecated: 0.26: Use #VtePty and vte_pty_get_size() instead
  */
 int
 _vte_pty_get_size(int master,
@@ -1909,7 +1909,7 @@ _vte_pty_get_size(int master,
  *
  * Returns: 0 on success, -1 on failure.
  *
- * Deprecated: 0.24: Use #VtePty and vte_pty_set_size() instead
+ * Deprecated: 0.26: Use #VtePty and vte_pty_set_size() instead
  */
 int
 _vte_pty_set_size(int master,
@@ -1936,7 +1936,7 @@ _vte_pty_set_size(int master,
  * use of the info.  Linux 2.6.5 or so defines IUTF8 to make the line
  * discipline do multibyte backspace correctly.
  *
- * Deprecated: 0.24: Use #VtePty and vte_pty_set_utf8() instead
+ * Deprecated: 0.26: Use #VtePty and vte_pty_set_utf8() instead
  */
 void _vte_pty_set_utf8(int master,
                        gboolean utf8)
@@ -1956,7 +1956,7 @@ void _vte_pty_set_utf8(int master,
  * Cleans up the PTY associated with the descriptor, specifically any logging
  * performed for the session.  The descriptor itself remains open.
  *
- * Deprecated: 0.24: Use #VtePty and vte_pty_close() instead
+ * Deprecated: 0.26: Use #VtePty and vte_pty_close() instead
  */
 void _vte_pty_close(int master)
 {
diff --git a/src/vte.c b/src/vte.c
index 7030478..1b7f271 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -3332,7 +3332,7 @@ _vte_terminal_disconnect_pty_write(VteTerminal *terminal)
  *
  * See vte_pty_new() for more information.
  *
- * Since: 0.24
+ * Since: 0.26
  */
 VtePty *
 vte_terminal_pty_new(VteTerminal *terminal,
@@ -3375,7 +3375,7 @@ vte_terminal_pty_new(VteTerminal *terminal,
  * Note: when using the g_spawn_async() family of functions,
  * the %G_SPAWN_DO_NOT_REAP_CHILD flag MUST have been passed.
  *
- * Since: 0.24
+ * Since: 0.26
  */
 void
 vte_terminal_watch_child (VteTerminal *terminal,
@@ -3518,7 +3518,7 @@ _vte_terminal_get_argv (const char *command,
  *
  * Returns: the PID of the new process
  *
- * Deprecated: 0.24: Use vte_terminal_fork_command_full()
+ * Deprecated: 0.26: Use vte_terminal_fork_command_full()
  */
 pid_t
 vte_terminal_fork_command(VteTerminal *terminal,
@@ -3603,7 +3603,7 @@ vte_terminal_fork_command(VteTerminal *terminal,
  *
  * Returns: %TRUE on success, or %FALSE on error with @error filled in
  *
- * Since: 0.24
+ * Since: 0.26
  */
 gboolean
 vte_terminal_fork_command_full(VteTerminal *terminal,
@@ -3679,7 +3679,7 @@ vte_terminal_fork_command_full(VteTerminal *terminal,
  *
  * Since: 0.11.11
  *
- * Deprecated: 0.24: Use #VtePty and fork() instead
+ * Deprecated: 0.26: Use #VtePty and fork() instead
  */
 pid_t
 vte_terminal_forkpty(VteTerminal *terminal,
@@ -12157,7 +12157,7 @@ vte_terminal_class_init(VteTerminalClass *klass)
          * 
          * Since: 0.20
          *
-         * Deprecated: 0.24: Use the #VteTerminal:pty-object property instead
+         * Deprecated: 0.26: Use the #VteTerminal:pty-object property instead
          */
         g_object_class_install_property
                 (gobject_class,
@@ -12172,7 +12172,7 @@ vte_terminal_class_init(VteTerminalClass *klass)
          *
          * The PTY object for the terminal.
          *
-         * Since: 0.24
+         * Since: 0.26
          */
         g_object_class_install_property
                 (gobject_class,
@@ -13630,7 +13630,7 @@ vte_terminal_get_status_line(VteTerminal *terminal)
  * size.  The values returned in @xpad and @ypad are the total padding used in
  * each direction, and do not need to be doubled.
  *
- * Deprecated: 0.24: Get the #VteTerminal:inner-border style property instead
+ * Deprecated: 0.26: Get the #VteTerminal:inner-border style property instead
  */
 void
 vte_terminal_get_padding(VteTerminal *terminal, int *xpad, int *ypad)
@@ -13795,7 +13795,7 @@ vte_terminal_get_icon_title(VteTerminal *terminal)
  *
  * Since: 0.12.1
  *
- * Deprecated: 0.24: Use vte_pty_new_foreign() and vte_terminal_set_pty_object()
+ * Deprecated: 0.26: Use vte_pty_new_foreign() and vte_terminal_set_pty_object()
  */
 void
 vte_terminal_set_pty(VteTerminal *terminal, int pty_master)
@@ -13822,7 +13822,7 @@ vte_terminal_set_pty(VteTerminal *terminal, int pty_master)
  * Sets @pty as the PTY to use in @terminal.
  * Use %NULL to unset the PTY.
  *
- * Since: 0.24.
+ * Since: 0.26.
  */
 void
 vte_terminal_set_pty_object(VteTerminal *terminal,
@@ -13919,7 +13919,7 @@ vte_terminal_set_pty_object(VteTerminal *terminal,
  *
  * Since: 0.20
  *
- * Deprecated: 0.24: Use vte_terminal_get_pty_object() and vte_pty_get_fd()
+ * Deprecated: 0.26: Use vte_terminal_get_pty_object() and vte_pty_get_fd()
  */
 int
 vte_terminal_get_pty(VteTerminal *terminal)
@@ -13943,7 +13943,7 @@ vte_terminal_get_pty(VteTerminal *terminal)
  *
  * Return value: a #VtePty, or %NULL
  *
- * Since: 0.24
+ * Since: 0.26
  */
 VtePty *
 vte_terminal_get_pty_object(VteTerminal *terminal)
diff --git a/src/vtepty.h b/src/vtepty.h
index a705f94..64effd7 100644
--- a/src/vtepty.h
+++ b/src/vtepty.h
@@ -39,7 +39,7 @@ G_BEGIN_DECLS
  *   don't fall back to try using PTY98
  * @VTE_PTY_DEFAULT: the default flags
  *
- * Since: 0.24
+ * Since: 0.26
  */
 typedef enum {
   VTE_PTY_NO_LASTLOG  = 1 << 0,
@@ -56,7 +56,7 @@ typedef enum {
  *   allocate the PTY
  * @VTE_PTY_ERROR_PTY98_FAILED: failure when using PTY98 to allocate the PTY
  *
- * Since: 0.24
+ * Since: 0.26
  */
 typedef enum {
   VTE_PTY_ERROR_PTY_HELPER_FAILED = 0,
@@ -71,7 +71,7 @@ GQuark vte_pty_error_quark (void);
  * Error domain for VTE PTY errors. Errors in this domain will be from the #VtePtyError
  * enumeration. See #GError for more information on error domains.
  *
- * Since: 0.24
+ * Since: 0.26
  */
 #define VTE_PTY_ERROR (vte_pty_error_quark ())
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]