diff options
author | deva <deva> | 2007-09-27 12:02:28 +0000 |
---|---|---|
committer | deva <deva> | 2007-09-27 12:02:28 +0000 |
commit | 1890cff193f6e5c10c7581b0767bbb5ac91f8cc7 (patch) | |
tree | 6112f01b1963294a47c5a1d20bc1020dde3a0f31 /dtd | |
parent | 8a03999480430e00646b8d185cff2e5ad32dfdb5 (diff) |
Layout was missing on radiobuttons in doc, and removed from list and combo in examples.
Diffstat (limited to 'dtd')
-rw-r--r-- | dtd/macro.dtd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dtd/macro.dtd b/dtd/macro.dtd index f90c0b7..6a2c973 100644 --- a/dtd/macro.dtd +++ b/dtd/macro.dtd @@ -10,21 +10,21 @@ <!ATTLIST frame name CDATA #REQUIRED layout CDATA #REQUIRED> -<!ELEMENT label (lineedit|label|combo|button|frame)*> +<!ELEMENT label EMPTY> <!ATTLIST label name CDATA #REQUIRED caption CDATA #REQUIRED layout CDATA #IMPLIED> -<!ELEMENT lineedit (lineedit|label|combo|button|frame)*> +<!ELEMENT lineedit EMPTY> <!ATTLIST lineedit name CDATA #REQUIRED regexp CDATA #IMPLIED layout CDATA #IMPLIED> -<!ELEMENT combo (lineedit|label|combo|button|frame)*> +<!ELEMENT combo EMPTY> <!ATTLIST combo name CDATA #REQUIRED layout CDATA #IMPLIED> -<!ELEMENT button (lineedit|label|combo|button|frame)*> +<!ELEMENT button EMPTY> <!ATTLIST button name CDATA #REQUIRED caption CDATA #REQUIRED layout CDATA #IMPLIED |