[gnome-builder/wip/gtk4-port] libide/gui: add gidoc for out parameters
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port] libide/gui: add gidoc for out parameters
- Date: Thu, 21 Apr 2022 00:10:48 +0000 (UTC)
commit 2d4f748503b6b4213789ccb40c9e0fe0c18651d5
Author: Christian Hergert <chergert redhat com>
Date: Wed Apr 20 17:10:27 2022 -0700
libide/gui: add gidoc for out parameters
src/libide/gui/ide-panel-position.c | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
---
diff --git a/src/libide/gui/ide-panel-position.c b/src/libide/gui/ide-panel-position.c
index 9a38ab902..2d8acdd20 100644
--- a/src/libide/gui/ide-panel-position.c
+++ b/src/libide/gui/ide-panel-position.c
@@ -78,6 +78,13 @@ ide_panel_position_set_edge (IdePanelPosition *self,
self->edge_set = TRUE;
}
+/**
+ * ide_panel_position_get_column:
+ * @self: a #IdePanelPosition
+ * @column: (out): a location for a column
+ *
+ * Returns: %TRUE if the column is set
+ */
gboolean
ide_panel_position_get_column (IdePanelPosition *self,
guint *column)
@@ -100,6 +107,13 @@ ide_panel_position_set_column (IdePanelPosition *self,
self->column_set = TRUE;
}
+/**
+ * ide_panel_position_get_row:
+ * @self: a #IdePanelPosition
+ * @row: (out): a location for the row
+ *
+ * Returns: %TRUE if the row is set
+ */
gboolean
ide_panel_position_get_row (IdePanelPosition *self,
guint *row)
@@ -122,6 +136,13 @@ ide_panel_position_set_row (IdePanelPosition *self,
self->row_set = TRUE;
}
+/**
+ * ide_panel_position_get_depth:
+ * @self: a #IdePanelPosition
+ * @depth: (out): a location for the depth
+ *
+ * Returns: %TRUE if the depth is set
+ */
gboolean
ide_panel_position_get_depth (IdePanelPosition *self,
guint *depth)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]