aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-08-30 10:35:48 +0000
committerGravatar Fabio Bas2010-08-30 10:35:48 +0000
commit2ca3febab17f0124a2e52e37ce67e8b0fa1e2d4d (patch)
tree5388ec0a22653d5963e769a81c876220f0da36ff /src
parentworkaround for a crash in ::sprintf() specific to mingw/qt2010.03 (diff)
downloadKVIrc-2ca3febab17f0124a2e52e37ce67e8b0fa1e2d4d.tar.gz
KVIrc-2ca3febab17f0124a2e52e37ce67e8b0fa1e2d4d.tar.bz2
KVIrc-2ca3febab17f0124a2e52e37ce67e8b0fa1e2d4d.zip
fixed switch documentation
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4945 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src')
-rw-r--r--src/kvirc/kvs/kvi_kvs_parser_specialcommands.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kvirc/kvs/kvi_kvs_parser_specialcommands.cpp b/src/kvirc/kvs/kvi_kvs_parser_specialcommands.cpp
index f0b6cf2dc..3fc26a36d 100644
--- a/src/kvirc/kvs/kvi_kvs_parser_specialcommands.cpp
+++ b/src/kvirc/kvs/kvi_kvs_parser_specialcommands.cpp
@@ -1337,6 +1337,7 @@ KviKvsTreeNodeCommand * KviKvsParser::parseSpecialCommandSwitch()
that terminated the execution with break).[br]
@examples:
[comment]# Try to change the 1 below to 2 or 3 to see the results[/comment]
+ [example]
%tmp = 1
switch(%tmp)
{
@@ -1350,7 +1351,9 @@ KviKvsTreeNodeCommand * KviKvsParser::parseSpecialCommandSwitch()
echo \%tmp was not 1 nor 2: it was %tmp!
break;
}
+ [/example]
[comment]# A complexier example: change the 1 in 2 or 3[/comment]
+ [example]
%tmp = 1
switch(%tmp)
{
@@ -1363,7 +1366,9 @@ KviKvsTreeNodeCommand * KviKvsParser::parseSpecialCommandSwitch()
echo \%tmp was either 1 or something different from 2 (%tmp)
break;
}
+ [/example]
[comment]# An example with strings[/comment]
+ [example]
%tmp = "This is a test"
%tmp2 = "This is not a test"
switch(%tmp)
@@ -1386,6 +1391,7 @@ KviKvsTreeNodeCommand * KviKvsParser::parseSpecialCommandSwitch()
echo This is executed anyway (unless some break was called)
break;
}
+ [/example]
*/
if(KVSP_curCharUnicode != '(')