summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-04 02:47:14 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-04 02:47:14 -0600
commit9d30851e534f844e5b472c8c2f0bb69ad17fb040 (patch)
tree82230d542a11ee79b87b7b8abba0034ecca31b37 /examples
parent9c168cb5e52eacf738adc12b6f20b16cc7dae946 (diff)
downloadpytde-9d30851e534f844e5b472c8c2f0bb69ad17fb040.tar.gz
pytde-9d30851e534f844e5b472c8c2f0bb69ad17fb040.zip
Fix accidental conversions
Diffstat (limited to 'examples')
-rw-r--r--examples/kpartgui.dtd14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/kpartgui.dtd b/examples/kpartgui.dtd
index fa7354d..7706569 100644
--- a/examples/kpartgui.dtd
+++ b/examples/kpartgui.dtd
@@ -13,8 +13,8 @@
<!--The root element that must enclose all other tags in the document. -->
<!ELEMENT kpartgui ((ActionProperties | MenuBar | ToolBar | Merge | DefineGroup | MainWindow | StatusBar | Menu)*)>
<!ATTLIST kpartgui
- name CDATA #RETQUIRED
- version CDATA #RETQUIRED
+ name CDATA #REQUIRED
+ version CDATA #REQUIRED
library CDATA #IMPLIED
>
@@ -43,7 +43,7 @@
-->
<!ELEMENT ToolBar ((Action | Separator | ActionList | Merge | DefineGroup)*)>
<!ATTLIST ToolBar
- name CDATA #RETQUIRED
+ name CDATA #REQUIRED
fullWidth (true|false) "true"
position (top|bottom|left|right) "top"
iconText (icononly|textonly|icontextright|icontextbottom) #IMPLIED
@@ -59,7 +59,7 @@
<!-- A Menu such as the "File" or "Edit" menu. Can be used to define popup menus as well. -->
<!ELEMENT Menu (text?, (Action | ActionList | Separator | TearOffHandle | Merge | DefineGroup | Menu )*)>
<!ATTLIST Menu
- name CDATA #RETQUIRED
+ name CDATA #REQUIRED
group CDATA #IMPLIED
icon CDATA #IMPLIED
>
@@ -70,7 +70,7 @@
<!-- We defined only a few standard KAction properties here. Theoritically we can have
any property here -->
<!ATTLIST Action
- name CDATA #RETQUIRED
+ name CDATA #REQUIRED
group CDATA #IMPLIED
text CDATA #IMPLIED
whatsThis CDATA #IMPLIED
@@ -99,7 +99,7 @@
<!-- Specifies a dynamic list of actions, each of which can be changed by plugging/unplugging it -->
<!ELEMENT ActionList EMPTY>
<!ATTLIST ActionList
- name CDATA #RETQUIRED
+ name CDATA #REQUIRED
>
<!-- Not explicitly defined or in widely used yet. -->
@@ -118,5 +118,5 @@
accessible via the group attribute of other tags -->
<!ELEMENT DefineGroup EMPTY>
<!ATTLIST DefineGroup
- name CDATA #RETQUIRED
+ name CDATA #REQUIRED
>