diff options
| author | 2015-01-02 15:18:31 +0000 | |
|---|---|---|
| committer | 2015-01-02 15:18:31 +0000 | |
| commit | 5a6615823065d24a77db031d43a83d8db5ee81db (patch) | |
| tree | 2011c01c90e8ff96d0193d36d4fc18446c151f33 /src/modules | |
| parent | osx: fix qt's plugin installation in debug mode (diff) | |
| download | KVIrc-5a6615823065d24a77db031d43a83d8db5ee81db.tar.gz KVIrc-5a6615823065d24a77db031d43a83d8db5ee81db.tar.bz2 KVIrc-5a6615823065d24a77db031d43a83d8db5ee81db.zip | |
fixed doc, fix for #1373
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6430 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/popup/libkvipopup.cpp | 16 |
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] |
