[vte] docs: Remove version markers
- From: Christian Persch <chpe src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vte] docs: Remove version markers
- Date: Mon, 3 Nov 2014 17:39:06 +0000 (UTC)
commit 0a96716b8fe1a68d397862fc4dbb60dad5625c52
Author: Christian Persch <chpe gnome org>
Date: Mon Nov 3 18:38:29 2014 +0100
docs: Remove version markers
0.38 has a new API/ABI, so the Since: markers really aren't appropriate.
doc/reference/vte-docs.xml | 24 ---------
src/pty.c | 24 ---------
src/vte.c | 111 --------------------------------------------
src/vteenums.h | 4 --
src/vtepty.h | 2 -
src/vteversion.h.in | 10 ----
6 files changed, 0 insertions(+), 175 deletions(-)
---
diff --git a/doc/reference/vte-docs.xml b/doc/reference/vte-docs.xml
index 8ff639e..883b901 100644
--- a/doc/reference/vte-docs.xml
+++ b/doc/reference/vte-docs.xml
@@ -83,30 +83,6 @@
<title>Index of deprecated symbols</title>
<xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
</index>
- <index id="api-index-0-20" role="0.20">
- <title>Index of new symbols in 0.20</title>
- <xi:include href="xml/api-index-0.20.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-0-24" role="0.24">
- <title>Index of new symbols in 0.24</title>
- <xi:include href="xml/api-index-0.24.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-0-26" role="0.26">
- <title>Index of new symbols in 0.26</title>
- <xi:include href="xml/api-index-0.26.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-0-28" role="0.28">
- <title>Index of new symbols in 0.28</title>
- <xi:include href="xml/api-index-0.28.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-0-34" role="0.34">
- <title>Index of new symbols in 0.34</title>
- <xi:include href="xml/api-index-0.34.xml"><xi:fallback /></xi:include>
- </index>
- <index id="api-index-0-36" role="0.36">
- <title>Index of new symbols in 0.36</title>
- <xi:include href="xml/api-index-0.36.xml"><xi:fallback /></xi:include>
- </index>
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
diff --git a/src/pty.c b/src/pty.c
index 51be996..1e3ec20 100644
--- a/src/pty.c
+++ b/src/pty.c
@@ -24,8 +24,6 @@
*
* The terminal widget uses these functions to start commands with new controlling
* pseudo-terminals and to resize pseudo-terminals.
- *
- * Since: 0.26
*/
#include <config.h>
@@ -216,8 +214,6 @@ typedef struct {
/**
* VtePty:
- *
- * Since: 0.26
*/
struct _VtePty {
GObject parent_instance;
@@ -248,8 +244,6 @@ struct _VtePtyClass {
* @pty: a #VtePty
*
* FIXMEchpe
- *
- * Since: 0.26
*/
void
vte_pty_child_setup (VtePty *pty)
@@ -559,8 +553,6 @@ __vte_pty_spawn (VtePty *pty,
* If setting the window size failed, @error will be set to a #GIOError.
*
* Returns: %TRUE on success, %FALSE on failure with @error filled in
- *
- * Since: 0.26
*/
gboolean
vte_pty_set_size(VtePty *pty,
@@ -615,8 +607,6 @@ vte_pty_set_size(VtePty *pty,
* If getting the window size failed, @error will be set to a #GIOError.
*
* Returns: %TRUE on success, %FALSE on failure with @error filled in
- *
- * Since: 0.26
*/
gboolean
vte_pty_get_size(VtePty *pty,
@@ -1334,8 +1324,6 @@ _vte_pty_open_with_helper(VtePty *pty,
* discipline do multibyte backspace correctly.
*
* Returns: %TRUE on success, %FALSE on failure with @error filled in
- *
- * Since: 0.26
*/
gboolean
vte_pty_set_utf8(VtePty *pty,
@@ -1387,8 +1375,6 @@ 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.26
*/
void
vte_pty_close (VtePty *pty)
@@ -1617,8 +1603,6 @@ 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.26
*/
g_object_class_install_property
(object_class,
@@ -1634,8 +1618,6 @@ vte_pty_class_init (VtePtyClass *klass)
* VtePty:fd:
*
* The file descriptor of the PTY master.
- *
- * Since: 0.26
*/
g_object_class_install_property
(object_class,
@@ -1656,8 +1638,6 @@ vte_pty_class_init (VtePtyClass *klass)
* enumeration. See #GError for more information on error domains.
*
* Returns: the error domain for VTE PTY errors
- *
- * Since: 0.26
*/
GQuark
vte_pty_error_quark(void)
@@ -1705,8 +1685,6 @@ vte_pty_error_quark(void)
* be no fallback to allocate a PTY using Unix98 PTY functions.
*
* Returns: (transfer full): a new #VtePty, or %NULL on error with @error filled in
- *
- * Since: 0.26
*/
VtePty *
vte_pty_new_sync (VtePtyFlags flags,
@@ -1734,8 +1712,6 @@ vte_pty_new_sync (VtePtyFlags flags,
* and close it on finalize.
*
* Returns: (transfer full): a new #VtePty for @fd, or %NULL on error with @error filled in
- *
- * Since: 0.26
*/
VtePty *
vte_pty_new_foreign_sync (int fd,
diff --git a/src/vte.c b/src/vte.c
index dce11ef..9374fe6 100644
--- a/src/vte.c
+++ b/src/vte.c
@@ -1174,8 +1174,6 @@ vte_terminal_set_cursor_from_regex_match(VteTerminal *terminal, struct vte_match
*
* Clears the list of regular expressions the terminal uses to highlight text
* when the user moves the mouse cursor.
- *
- * Since: 0.30
*/
void
vte_terminal_match_remove_all(VteTerminal *terminal)
@@ -1247,8 +1245,6 @@ vte_terminal_cursor_new(VteTerminal *terminal, GdkCursorType cursor_type)
* this expression, the text will be highlighted.
*
* Returns: an integer associated with this expression
- *
- * Since: 0.17.1
*/
int
vte_terminal_match_add_gregex(VteTerminal *terminal, GRegex *regex, GRegexMatchFlags flags)
@@ -1301,9 +1297,6 @@ vte_terminal_match_add_gregex(VteTerminal *terminal, GRegex *regex, GRegexMatchF
*
* Sets which cursor the terminal will use if the pointer is over the pattern
* specified by @tag. The terminal keeps a reference to @cursor.
- *
- * Since: 0.11
- *
*/
void
vte_terminal_match_set_cursor(VteTerminal *terminal, int tag, GdkCursor *cursor)
@@ -1328,9 +1321,6 @@ vte_terminal_match_set_cursor(VteTerminal *terminal, int tag, GdkCursor *cursor)
*
* Sets which cursor the terminal will use if the pointer is over the pattern
* specified by @tag.
- *
- * Since: 0.11.9
- *
*/
void
vte_terminal_match_set_cursor_type(VteTerminal *terminal,
@@ -1356,9 +1346,6 @@ vte_terminal_match_set_cursor_type(VteTerminal *terminal,
*
* Sets which cursor the terminal will use if the pointer is over the pattern
* specified by @tag.
- *
- * Since: 0.17.1
- *
*/
void
vte_terminal_match_set_cursor_name(VteTerminal *terminal,
@@ -2081,8 +2068,6 @@ vte_terminal_get_encoding(VteTerminal *terminal)
*
* This setting only takes effect the next time the terminal is reset, either
* via escape sequence or with vte_terminal_reset().
- *
- * Since: 0.38
*/
void
vte_terminal_set_cjk_ambiguous_width(VteTerminal *terminal, int width)
@@ -2103,8 +2088,6 @@ vte_terminal_set_cjk_ambiguous_width(VteTerminal *terminal, int width)
* the UTF-8 encoding (vte_terminal_set_encoding()).
*
* Returns: 1 if ambiguous-width characters are narrow, or 2 if they are wide
- *
- * Since: 0.38
*/
int
vte_terminal_get_cjk_ambiguous_width(VteTerminal *terminal)
@@ -3355,8 +3338,6 @@ _vte_terminal_disconnect_pty_write(VteTerminal *terminal)
* See vte_pty_new() for more information.
*
* Returns: (transfer full): a new #VtePty
- *
- * Since: 0.30
*/
VtePty *
vte_terminal_pty_new_sync(VteTerminal *terminal,
@@ -3393,8 +3374,6 @@ vte_terminal_pty_new_sync(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.26
*/
void
vte_terminal_watch_child (VteTerminal *terminal,
@@ -3441,8 +3420,6 @@ vte_terminal_watch_child (VteTerminal *terminal,
*
* Returns: (transfer full) (type filename): a newly allocated string with the
* user's shell, or %NULL
- *
- * Since: 0.28
*/
char *
vte_get_user_shell (void)
@@ -3487,8 +3464,6 @@ vte_get_user_shell (void)
* See vte_pty_new(), g_spawn_async() and vte_terminal_watch_child() for more information.
*
* Returns: %TRUE on success, or %FALSE on error with @error filled in
- *
- * Since: 0.30
*/
gboolean
vte_terminal_spawn_sync(VteTerminal *terminal,
@@ -4428,8 +4403,6 @@ vte_terminal_feed_child(VteTerminal *terminal, const char *text, gssize length)
* @length: length of @data
*
* Sends a block of binary data to the child.
- *
- * Since: 0.12.1
*/
void
vte_terminal_feed_child_binary(VteTerminal *terminal, const guint8 *data, gsize length)
@@ -6114,8 +6087,6 @@ vte_terminal_get_text(VteTerminal *terminal,
* lines are included.
*
* Returns: (transfer full): a newly allocated text string, or %NULL.
- *
- * Since: 0.11.11
*/
char *
vte_terminal_get_text_include_trailing_spaces(VteTerminal *terminal,
@@ -6792,8 +6763,6 @@ vte_terminal_extend_selection(VteTerminal *terminal, long x, long y,
* @terminal: a #VteTerminal
*
* Selects all text within the terminal (including the scrollback buffer).
- *
- * Since: 0.16
*/
void
vte_terminal_select_all (VteTerminal *terminal)
@@ -7579,8 +7548,6 @@ vte_terminal_get_font(VteTerminal *terminal)
* @scale: the font scale
*
* Sets the terminal's font scale to @scale.
- *
- * Since: 0.30
*/
void
vte_terminal_set_font_scale(VteTerminal *terminal,
@@ -7599,8 +7566,6 @@ vte_terminal_set_font_scale(VteTerminal *terminal,
* @terminal: a #VteTerminal
*
* Returns: the terminal's font scale
- *
- * Since: 0.30
*/
gdouble
vte_terminal_get_font_scale(VteTerminal *terminal)
@@ -10855,8 +10820,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* @vteterminal: the object which received the signal
*
* Emitted when the current directory URI is modified.
- *
- * Since: 0.34
*/
g_signal_new(I_("current-directory-uri-changed"),
G_OBJECT_CLASS_TYPE(klass),
@@ -10872,8 +10835,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* @vteterminal: the object which received the signal
*
* Emitted when the current file URI is modified.
- *
- * Since: 0.34
*/
g_signal_new(I_("current-file-uri-changed"),
G_OBJECT_CLASS_TYPE(klass),
@@ -11277,8 +11238,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* Controls whether or not the terminal will attempt to draw bold text.
* This may happen either by using a bold font variant, or by
* repainting text with a different offset.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11292,8 +11251,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* Controls whether or not the terminal will beep when the child outputs the
* "bl" sequence.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11307,8 +11264,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* *Controls what string or control sequence the terminal sends to its child
* when the user presses the backspace key.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11327,8 +11282,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* This setting only takes effect the next time the terminal is reset, either
* via escape sequence or with vte_terminal_reset().
- *
- * Since: 0.38
*/
g_object_class_install_property
(gobject_class,
@@ -11342,8 +11295,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* Sets whether or not the cursor will blink. Using %VTE_CURSOR_BLINK_SYSTEM
* will use the #GtkSettings::gtk-cursor-blink setting.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11357,8 +11308,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:cursor-shape:
*
* Controls the shape of the cursor.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11373,8 +11322,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* Controls what string or control sequence the terminal sends to its child
* when the user presses the delete key.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11388,8 +11335,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:font-scale:
*
* The terminal's font scale.
- *
- * Since: 0.30
*/
g_object_class_install_property
(gobject_class,
@@ -11407,8 +11352,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* be encoded with. For certain terminal types, applications executing in the
* terminal can change the encoding. The default is defined by the
* application's locale settings.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11425,8 +11368,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* will immediately attempt to load the desired font, retrieve its
* metrics, and attempt to resize itself to keep the same number of rows
* and columns.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11439,8 +11380,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:icon-title:
*
* The terminal's so-called icon title, or %NULL if no icon title has been set.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11469,8 +11408,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* Controls the value of the terminal's mouse autohide setting. When autohiding
* is enabled, the mouse cursor will be hidden when the user presses a key and
* shown when the user moves the mouse.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11483,8 +11420,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:pty:
*
* The PTY object for the terminal.
- *
- * Since: 0.26
*/
g_object_class_install_property
(gobject_class,
@@ -11499,8 +11434,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* Controls whether or not the terminal will rewrap its contents, including
* the scrollback buffer, whenever the terminal's width changes.
- *
- * Since: 0.36
*/
g_object_class_install_property
(gobject_class,
@@ -11518,8 +11451,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* scrollback. Note that this setting only affects the normal screen buffer.
* For terminal types which have an alternate screen buffer, no scrollback is
* allowed on the alternate screen buffer.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11535,8 +11466,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* Controls whether or not the terminal will forcibly scroll to the bottom of
* the viewable history when the user presses a key. Modifier keys do not
* trigger this behavior.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11550,8 +11479,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* Controls whether or not the terminal will forcibly scroll to the bottom of
* the viewable history when the new data is received from the child.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11564,8 +11491,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:window-title:
*
* The terminal's title.
- *
- * Since: 0.20
*/
g_object_class_install_property
(gobject_class,
@@ -11578,8 +11503,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:current-directory-uri:
*
* The current directory URI, or %NULL if unset.
- *
- * Since: 0.34
*/
g_object_class_install_property
(gobject_class,
@@ -11592,8 +11515,6 @@ vte_terminal_class_init(VteTerminalClass *klass)
* VteTerminal:current-file-uri:
*
* The current file URI, or %NULL if unset.
- *
- * Since: 0.34
*/
g_object_class_install_property
(gobject_class,
@@ -11765,8 +11686,6 @@ vte_terminal_set_scroll_on_keystroke(VteTerminal *terminal, gboolean scroll)
*
* Controls whether or not the terminal will rewrap its contents, including
* the scrollback history, whenever the terminal's width changes.
- *
- * Since: 0.36
*/
void
vte_terminal_set_rewrap_on_resize(VteTerminal *terminal, gboolean rewrap)
@@ -11791,8 +11710,6 @@ vte_terminal_set_rewrap_on_resize(VteTerminal *terminal, gboolean rewrap)
* Checks whether or not the terminal will rewrap its contents upon resize.
*
* Returns: %TRUE if rewrapping is enabled, %FALSE if not
- *
- * Since: 0.36
*/
gboolean
vte_terminal_get_rewrap_on_resize(VteTerminal *terminal)
@@ -11953,8 +11870,6 @@ vte_terminal_set_cursor_blinks_internal(VteTerminal *terminal, gboolean blink)
*
* Sets whether or not the cursor will blink. Using %VTE_CURSOR_BLINK_SYSTEM
* will use the #GtkSettings::gtk-cursor-blink setting.
- *
- * Since: 0.17.1
*/
void
vte_terminal_set_cursor_blink_mode(VteTerminal *terminal, VteCursorBlinkMode mode)
@@ -11996,8 +11911,6 @@ vte_terminal_set_cursor_blink_mode(VteTerminal *terminal, VteCursorBlinkMode mod
* Returns the currently set cursor blink mode.
*
* Return value: cursor blink mode.
- *
- * Since: 0.17.1
*/
VteCursorBlinkMode
vte_terminal_get_cursor_blink_mode(VteTerminal *terminal)
@@ -12013,8 +11926,6 @@ vte_terminal_get_cursor_blink_mode(VteTerminal *terminal)
* @shape: the #VteCursorShape to use
*
* Sets the shape of the cursor drawn.
- *
- * Since: 0.20
*/
void
vte_terminal_set_cursor_shape(VteTerminal *terminal, VteCursorShape shape)
@@ -12040,8 +11951,6 @@ vte_terminal_set_cursor_shape(VteTerminal *terminal, VteCursorShape shape)
* Returns the currently set cursor shape.
*
* Return value: cursor shape.
- *
- * Since: 0.17.6
*/
VteCursorShape
vte_terminal_get_cursor_shape(VteTerminal *terminal)
@@ -12475,8 +12384,6 @@ vte_terminal_get_icon_title(VteTerminal *terminal)
*
* Returns: (transfer none): the URI of the current directory of the
* process running in the terminal, or %NULL
- *
- * Since: 0.34
*/
const char *
vte_terminal_get_current_directory_uri(VteTerminal *terminal)
@@ -12492,8 +12399,6 @@ vte_terminal_get_current_directory_uri(VteTerminal *terminal)
* Returns: (transfer none): the URI of the current file the
* process running in the terminal is operating on, or %NULL if
* not set
- *
- * Since: 0.34
*/
const char *
vte_terminal_get_current_file_uri(VteTerminal *terminal)
@@ -12509,8 +12414,6 @@ vte_terminal_get_current_file_uri(VteTerminal *terminal)
*
* Sets @pty as the PTY to use in @terminal.
* Use %NULL to unset the PTY.
- *
- * Since: 0.26.
*/
void
vte_terminal_set_pty(VteTerminal *terminal,
@@ -12602,8 +12505,6 @@ vte_terminal_set_pty(VteTerminal *terminal,
* Returns the #VtePty of @terminal.
*
* Returns: (transfer none): a #VtePty, or %NULL
- *
- * Since: 0.26
*/
VtePty *
vte_terminal_get_pty(VteTerminal *terminal)
@@ -13302,8 +13203,6 @@ vte_terminal_write_contents_sync (VteTerminal *terminal,
* @flags: flags from #GRegexMatchFlags
*
* Sets the #GRegex regex to search for. Unsets the search regex when passed %NULL.
- *
- * Since: 0.26
*/
void
vte_terminal_search_set_gregex (VteTerminal *terminal,
@@ -13332,8 +13231,6 @@ vte_terminal_search_set_gregex (VteTerminal *terminal,
* @terminal: a #VteTerminal
*
* Returns: (transfer none): the search #GRegex regex set in @terminal, or %NULL
- *
- * Since: 0.26
*/
GRegex *
vte_terminal_search_get_gregex (VteTerminal *terminal)
@@ -13350,8 +13247,6 @@ vte_terminal_search_get_gregex (VteTerminal *terminal)
*
* Sets whether search should wrap around to the beginning of the
* terminal content when reaching its end.
- *
- * Since: 0.26
*/
void
vte_terminal_search_set_wrap_around (VteTerminal *terminal,
@@ -13367,8 +13262,6 @@ vte_terminal_search_set_wrap_around (VteTerminal *terminal,
* @terminal: a #VteTerminal
*
* Returns: whether searching will wrap around
- *
- * Since: 0.26
*/
gboolean
vte_terminal_search_get_wrap_around (VteTerminal *terminal)
@@ -13573,8 +13466,6 @@ vte_terminal_search_find (VteTerminal *terminal,
* vte_terminal_search_set_gregex().
*
* Returns: %TRUE if a match was found
- *
- * Since: 0.26
*/
gboolean
vte_terminal_search_find_previous (VteTerminal *terminal)
@@ -13590,8 +13481,6 @@ vte_terminal_search_find_previous (VteTerminal *terminal)
* vte_terminal_search_set_gregex().
*
* Returns: %TRUE if a match was found
- *
- * Since: 0.26
*/
gboolean
vte_terminal_search_find_next (VteTerminal *terminal)
diff --git a/src/vteenums.h b/src/vteenums.h
index a4e4d11..493abb6 100644
--- a/src/vteenums.h
+++ b/src/vteenums.h
@@ -83,8 +83,6 @@ typedef enum {
* @VTE_PTY_ERROR_PTY_HELPER_FAILED: failure when using the GNOME PTY helper to
* allocate the PTY
* @VTE_PTY_ERROR_PTY98_FAILED: failure when using PTY98 to allocate the PTY
- *
- * Since: 0.26
*/
typedef enum {
VTE_PTY_ERROR_PTY_HELPER_FAILED = 0,
@@ -100,8 +98,6 @@ typedef enum {
* @VTE_PTY_NO_FALLBACK: when allocating the PTY with the PTY helper fails,
* don't fall back to try using PTY98. Deprecated: 0.38
* @VTE_PTY_DEFAULT: the default flags
- *
- * Since: 0.26
*/
typedef enum {
VTE_PTY_NO_LASTLOG = 1 << 0,
diff --git a/src/vtepty.h b/src/vtepty.h
index c4f17cc..4285488 100644
--- a/src/vtepty.h
+++ b/src/vtepty.h
@@ -39,8 +39,6 @@ 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.26
*/
#define VTE_PTY_ERROR (vte_pty_error_quark ())
diff --git a/src/vteversion.h.in b/src/vteversion.h.in
index dcd720e..2ce7f6c 100644
--- a/src/vteversion.h.in
+++ b/src/vteversion.h.in
@@ -28,8 +28,6 @@
* @short_description: Library version checks
*
* These macros enable compile time checks of the library version.
- *
- * Since: 0.16.15
*/
/**
@@ -37,8 +35,6 @@
*
* The major version number of the VTE library
* (e.g. in version 3.1.4 this is 3).
- *
- * Since: 0.16.15
*/
#define VTE_MAJOR_VERSION (@VTE_MAJOR_VERSION@)
@@ -47,8 +43,6 @@
*
* The minor version number of the VTE library
* (e.g. in version 3.1.4 this is 1).
- *
- * Since: 0.16.15
*/
#define VTE_MINOR_VERSION (@VTE_MINOR_VERSION@)
@@ -57,8 +51,6 @@
*
* The micro version number of the VTE library
* (e.g. in version 3.1.4 this is 4).
- *
- * Since: 0.16.15
*/
#define VTE_MICRO_VERSION (@VTE_MICRO_VERSION@)
@@ -71,8 +63,6 @@
* Macro to check the library version at compile time.
* It returns %1 if the version of VTE is greater or
* equal to the required one, and %0 otherwise.
- *
- * Since: 0.16.15
*/
#define VTE_CHECK_VERSION(major,minor,micro) \
(VTE_MAJOR_VERSION > (major) || \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]