aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/popup/libkvipopup.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/popup/libkvipopup.cpp b/src/modules/popup/libkvipopup.cpp
index cbb5240dc..4b2457509 100644
--- a/src/modules/popup/libkvipopup.cpp
+++ b/src/modules/popup/libkvipopup.cpp
@@ -127,7 +127,7 @@
@description:
Adds a menu item with visible <text> and the optional <icon> to an already existing popup or
nested popup named <popupname>. If you want to add an item to a nested popup, use the form
- "popup.item", for example, "channeltextview.myNestedItem".[br]
+ "popup.addItem", for example, "channeltextview.myNestedItem".[br]
<text> is a string that is evaluated at [cmd]popup[/cmd] call time and may contain
identifiers and variables.[br]
<icon> is an optional [doc:image_id]image identifier[/doc].[br]
@@ -180,7 +180,7 @@ static bool popup_kvs_cmd_addItem(KviKvsModuleCallbackCommandCall * c)
Run quietly: don't print warning and errors
@description:
Adds a menu prologue to an already existing popup or nested popup named <popupname>. If you
- want to add an item to a nested popup, use the form "popup.item", for example,
+ want to add an item to a nested popup, use the form "popup.addItem", for example,
"channeltextview.myNestedItem".[br]
<item_id> is the optional item id - if not specified, it will be generated automatically.[br]
<command> will be executed just before the popup is filled at [cmd]popup.show[/cmd] command call.
@@ -229,7 +229,7 @@ static bool popup_kvs_cmd_addPrologue(KviKvsModuleCallbackCommandCall * c)
Run quietly: don't print warning and errors
@description:
Adds a menu epilogue to an already existing popup or nested popup named <popupname>. If you
- want to add an item to a nested popup, use the form "popup.item", for example,
+ want to add an item to a nested popup, use the form "popup.addItem", for example,
"channeltextview.myNestedItem".[br]
<item_id> is the optional item id - if not specified, it will be generated automatically.[br]
<command> will be executed just after the popup is filled at [cmd]popup.show[/cmd] command call.
@@ -276,7 +276,7 @@ static bool popup_kvs_cmd_addEpilogue(KviKvsModuleCallbackCommandCall * c)
@description:
Adds a nested popup item with visible <text> and the optional <icon> to an already existing popup or
nested popup named <popupname>. If you want to add an item to a nested popup, use the form
- "popup.item", for example, "channeltextview.myNestedItem".[br]
+ "popup.addItem", for example, "channeltextview.myNestedItem".[br]
<text> is a string that is evaluated at [cmd]popup[/cmd] call time and may contain
identifiers and variables.[br]
<icon> is an optional [doc:image_id]image identifier[/doc].[br]
@@ -324,7 +324,7 @@ static bool popup_kvs_cmd_addExtPopup(KviKvsModuleCommandCall * c)
@description:
Adds a descriptive label with visible <text> and the optional <icon> to an already existing popup or
nested popup named <popupname>. If you want to add an item to a nested popup, use the form
- "popup.item", for example, "channeltextview.myNestedItem". The label acts like a separator - it is
+ "popup.addItem", for example, "channeltextview.myNestedItem". The label acts like a separator - it is
not selectable or clickable.[br]
<text> is a string that is evaluated at [cmd]popup[/cmd] call time and may contain
identifiers and variables.[br]
@@ -371,7 +371,7 @@ static bool popup_kvs_cmd_addLabel(KviKvsModuleCommandCall * c)
@description:
Adds an empty nested popup item with visible <text> and the optional <icon> to an already existing popup or
nested popup named <popupname>. If you want to add an item to a nested popup, use the form
- "popup.item", for example, "channeltextview.myNestedItem".[br]
+ "popup.addItem", for example, "channeltextview.myNestedItem".[br]
<text> is a string that is evaluated at [cmd]popup[/cmd] call time and may contain
identifiers and variables.[br]
<icon> is an optional [doc:image_id]image identifier[/doc].[br]
@@ -418,7 +418,7 @@ static bool popup_kvs_cmd_addSubPopup(KviKvsModuleCommandCall * c)
@description:
Adds a separator (typically drawn as a straight line) to an already existing popup or
nested popup named <popupname>. If you want to add an item to a nested popup, use the form
- "popup.item", for example, "channeltextview.myNestedItem". The separator is not selectable
+ "popup.addItem", for example, "channeltextview.myNestedItem". The separator is not selectable
or clickable.[br]
<item_id> is the optional item id - if not specified, it will be generated automatically.[br]
If <condition> is given, it is evaluated at [cmd]popup.show[/cmd] call time and if the
@@ -459,7 +459,7 @@ static bool popup_kvs_cmd_addSeparator(KviKvsModuleCommandCall * c)
Run quietly: don't print warning and errors
@description:
Removes all the items from an already existing popup or nested popup named <popupname>.
- If you want to clear a nested popup, use the form "popup.item", for example,
+ If you want to clear a nested popup, use the form "popup.delItem", for example,
"channeltextview.myNestedItem".[br]
@seealso:
[cmd]defpopup[/cmd], [cmd]popup.show[/cmd], [fnc]popup.isEmpty[/fnc]