summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kvs/kvi_kvs_parser.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit27648a99ce3a8a1e498828f1fc93cbd6b3476a91 (patch)
tree09939e827c3467356b78fce055d5b2826a832ae5 /src/kvirc/kvs/kvi_kvs_parser.cpp
parent99e44ac443d2590ecdeb0da46608a0a537177fd7 (diff)
downloadkvirc-27648a99ce3a8a1e498828f1fc93cbd6b3476a91.tar.gz
kvirc-27648a99ce3a8a1e498828f1fc93cbd6b3476a91.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kvirc@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kvirc/kvs/kvi_kvs_parser.cpp')
-rw-r--r--src/kvirc/kvs/kvi_kvs_parser.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kvirc/kvs/kvi_kvs_parser.cpp b/src/kvirc/kvs/kvi_kvs_parser.cpp
index 3d439fd..24f3ac9 100644
--- a/src/kvirc/kvs/kvi_kvs_parser.cpp
+++ b/src/kvirc/kvs/kvi_kvs_parser.cpp
@@ -428,10 +428,10 @@ KviKvsTreeNodeInstruction * KviKvsParser::parseAsParameter(const TQChar * pBuffe
[/example]
The line above is an example of syntax specification. All the commands
are described by such syntax lines. [cmd]join[/cmd] is the command and it stands exactly
- for the literal string "join" typed in a script. <channel> is in angular tqparenthesis
+ for the literal string "join" typed in a script. <channel> is in angular parenthesis
and rappresents a mandatory parameter: you must substitute a real channel name in its place
otherwise the command will fail and KVIrc will probably complain too.
- [password] is still a parameter but the square tqparentheses indicate that it is
+ [password] is still a parameter but the square parentheses indicate that it is
optional: if you specify it, then it will be interpreted as the channel password,
if you don't then no password will be used.
[note]
@@ -701,7 +701,7 @@ KviKvsTreeNodeInstruction * KviKvsParser::parseAsParameter(const TQChar * pBuffe
The function [fnc]$str.len[/fnc] accepts a single parameter and returns the
length in characters of the parameter string. The returned value is always
a string: in this case it can be also interpreted as a number.[br]
- When passing an empty list you can avoid the tqparenthesis.
+ When passing an empty list you can avoid the parenthesis.
(And you have found the "simple" functions shown above).
So the followind two calls are equal:[br]
[example]
@@ -719,7 +719,7 @@ KviKvsTreeNodeInstruction * KviKvsParser::parseAsParameter(const TQChar * pBuffe
[/example]
If you want to place a literal '(' or ')' in the function parameters
you must escape it.
- A special case for when you want to use 'matching' tqparentheses:
+ A special case for when you want to use 'matching' parentheses:
an opened '(' corresponds to a closed ')'.
In this case you can omit the 'escape' character.[br]
[example]
@@ -2458,7 +2458,7 @@ KviKvsTreeNodeData * KviKvsParser::parsePercentOrDollar(bool bInObjScope)
return r;
}
// we're not in object scope and cur char is either $ or %
- // check for the common syntax $0!$1@$2 seen in hosttqmasks
+ // check for the common syntax $0!$1@$2 seen in hostmasks
// @$<digit> is non valid anyway
if(KVSP_curCharUnicode == '$')
{