summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2023-02-03 21:52:20 +0100
committerChristian Persch <chpe@src.gnome.org>2023-02-03 21:52:20 +0100
commit39ae174a159a5c50f250ad7547b056ea0a49859a (patch)
tree91e4b5550c2a5e9c512d32d567ee0aa9ce526ab7
parentaa7689792918a9d4054e367139d166b146a5bd22 (diff)
downloadvte-39ae174a159a5c50f250ad7547b056ea0a49859a.tar.gz
widget: Update some Since annotations
-rw-r--r--src/vtegtk.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/vtegtk.cc b/src/vtegtk.cc
index 682cabf1..095cb47e 100644
--- a/src/vtegtk.cc
+++ b/src/vtegtk.cc
@@ -2389,7 +2389,7 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* The horizontal alignment of @terminal within its allocation.
*
- * Since: 0.72
+ * Since: 0.74
*/
pspecs[PROP_XALIGN] =
g_param_spec_enum("xalign", nullptr, nullptr,
@@ -2402,7 +2402,7 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* The vertical alignment of @terminal within its allocation
*
- * Since: 0.72
+ * Since: 0.74
*/
pspecs[PROP_YALIGN] =
g_param_spec_enum("yalign", nullptr, nullptr,
@@ -2415,7 +2415,7 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* The horizontal fillment of @terminal within its allocation.
*
- * Since: 0.72
+ * Since: 0.74
*/
pspecs[PROP_XFILL] =
g_param_spec_boolean("xfill", nullptr, nullptr,
@@ -2427,7 +2427,7 @@ vte_terminal_class_init(VteTerminalClass *klass)
*
* The vertical fillment of @terminal within its allocation
*
- * Since: 0.72
+ * Since: 0.74
*/
pspecs[PROP_YFILL] =
g_param_spec_boolean("yfill", nullptr, nullptr,
@@ -6635,7 +6635,7 @@ constexpr bool check_enum_value<VteAlign>(VteAlign value) noexcept
* Note: %VTE_ALIGN_START_FILL is not supported, and will be treated
* like %VTE_ALIGN_START.
*
- * Since: 0.72
+ * Since: 0.74
*/
void
vte_terminal_set_xalign(VteTerminal* terminal,
@@ -6659,7 +6659,7 @@ catch (...)
*
* Returns: the horizontal alignment of @terminal within its allocation
*
- * Since: 0.72
+ * Since: 0.74
*/
VteAlign
vte_terminal_get_xalign(VteTerminal* terminal) noexcept
@@ -6682,7 +6682,7 @@ catch (...)
*
* Sets the vertical alignment of @terminal within its allocation.
*
- * Since: 0.72
+ * Since: 0.74
*/
void
vte_terminal_set_yalign(VteTerminal* terminal,
@@ -6706,7 +6706,7 @@ catch (...)
*
* Returns: the vertical alignment of @terminal within its allocation
*
- * Since: 0.72
+ * Since: 0.74
*/
VteAlign
vte_terminal_get_yalign(VteTerminal* terminal) noexcept
@@ -6732,7 +6732,7 @@ catch (...)
* Note: %VTE_FILL_START_FILL is not supported, and will be treated
* like %VTE_FILL_START.
*
- * Since: 0.72
+ * Since: 0.74
*/
void
vte_terminal_set_xfill(VteTerminal* terminal,
@@ -6755,7 +6755,7 @@ catch (...)
*
* Returns: the horizontal fillment of @terminal within its allocation
*
- * Since: 0.72
+ * Since: 0.74
*/
gboolean
vte_terminal_get_xfill(VteTerminal* terminal) noexcept
@@ -6778,7 +6778,7 @@ catch (...)
*
* Sets the vertical fillment of @terminal within its allocation.
*
- * Since: 0.72
+ * Since: 0.74
*/
void
vte_terminal_set_yfill(VteTerminal* terminal,
@@ -6801,7 +6801,7 @@ catch (...)
*
* Returns: the vertical fillment of @terminal within its allocation
*
- * Since: 0.72
+ * Since: 0.74
*/
gboolean
vte_terminal_get_yfill(VteTerminal* terminal) noexcept