From 1288e9c520e9b3291118b612d2cac2cdf7ce4ccd Mon Sep 17 00:00:00 2001
From: "Derwent Ready (drentsoft)" <1520613+drentsoft@users.noreply.github.com>
Date: Sun, 11 Oct 2020 00:14:17 +0100
Subject: [PATCH] Clarified usage of TreeItem get_next*() and get_prev*()
functions.
(cherry picked from commit df5a9228808497f19b5bddf7b58d2a532cd990d0)
---
doc/classes/TreeItem.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml
index 54fda6091..4d2856c06 100644
--- a/doc/classes/TreeItem.xml
+++ b/doc/classes/TreeItem.xml
@@ -167,14 +167,14 @@
- Returns the next TreeItem in the tree or a null object if there is none.
+ Returns the next sibling TreeItem in the tree or a null object if there is none.
- Returns the next visible TreeItem in the tree or a null object if there is none.
+ Returns the next visible sibling TreeItem in the tree or a null object if there is none.
If [code]wrap[/code] is enabled, the method will wrap around to the first visible element in the tree when called on the last visible element, otherwise it returns [code]null[/code].
@@ -187,14 +187,14 @@
- Returns the previous TreeItem in the tree or a null object if there is none.
+ Returns the previous sibling TreeItem in the tree or a null object if there is none.
- Returns the previous visible TreeItem in the tree or a null object if there is none.
+ Returns the previous visible sibling TreeItem in the tree or a null object if there is none.
If [code]wrap[/code] is enabled, the method will wrap around to the last visible element in the tree when called on the first visible element, otherwise it returns [code]null[/code].