diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | da4be7880ff1de6415ab6256afd2514e64f5fa2e (patch) | |
tree | 0862c14883af0435b012f6f592221fc167ed7d91 /kpovmodeler/pminsertrules.dtd | |
parent | d0a269b9b0361bf71c5dd5787be0839f9dcace8c (diff) | |
download | tdegraphics-da4be7880ff1de6415ab6256afd2514e64f5fa2e.tar.gz tdegraphics-da4be7880ff1de6415ab6256afd2514e64f5fa2e.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pminsertrules.dtd')
-rw-r--r-- | kpovmodeler/pminsertrules.dtd | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kpovmodeler/pminsertrules.dtd b/kpovmodeler/pminsertrules.dtd index 4b9a46d7..a3c2128c 100644 --- a/kpovmodeler/pminsertrules.dtd +++ b/kpovmodeler/pminsertrules.dtd @@ -39,23 +39,23 @@ Insert a list of groups and classes (the object classes that can be inserted) and one condition. If the condition is omitted, the classes can allways be inserted. --> -<!ELEMENT rule ((group | class)+, (and | or | not | before | after | tqcontains +<!ELEMENT rule ((group | class)+, (and | or | not | before | after | contains | greater | less | equal)?)> <!-- Simple negation. Insert one condition --> -<!ELEMENT not (and | or | before | after | tqcontains | greater | less | equal)> +<!ELEMENT not (and | or | before | after | contains | greater | less | equal)> <!-- Logical and. Insert any number of conditions --> -<!ELEMENT and (and | or | not | before | after | tqcontains | greater | less | equal)+> +<!ELEMENT and (and | or | not | before | after | contains | greater | less | equal)+> <!-- Logical or. Insert any number of conditions --> -<!ELEMENT or (and | or | not | before | after | tqcontains | greater | less | equal)+> +<!ELEMENT or (and | or | not | before | after | contains | greater | less | equal)+> -<!-- Condition. Value is true if the object already tqcontains +<!-- Condition. Value is true if the object already contains objects of the given class or group before the insert point. --> <!ELEMENT before (class | group)> -<!-- Condition. Value is true if the object already tqcontains +<!-- Condition. Value is true if the object already contains objects of the given class or group after the insert point. --> <!ELEMENT after (class | group)> @@ -71,9 +71,9 @@ is less than the second. --> <!ELEMENT less ((property | count | const), (property | count | const))> -<!-- Condition. Value is true if the object tqcontains +<!-- Condition. Value is true if the object contains objects of the given classes and groups. --> -<!ELEMENT tqcontains (group | class)+> +<!ELEMENT contains (group | class)+> <!-- Value. Value is the class property of the object, where the |