summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-01 12:14:51 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-01 12:14:51 +0000
commit25d72a504cc82a799b1f3f1c7e6823062304bb8e (patch)
tree8a94560e1016cc1d59147a827b89245773895bd2 /xmlscript
parenta270394a2f6ef6ef08d10b1badbac180bf50467e (diff)
removed import/ export of class-id
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/dtd/dialog.dtd3
-rw-r--r--xmlscript/source/xmldlg_imexp/xmldlg_export.cxx6
-rw-r--r--xmlscript/source/xmldlg_imexp/xmldlg_import.cxx7
3 files changed, 5 insertions, 11 deletions
diff --git a/xmlscript/dtd/dialog.dtd b/xmlscript/dtd/dialog.dtd
index 56ecfe0d75ef..841fbb665017 100644
--- a/xmlscript/dtd/dialog.dtd
+++ b/xmlscript/dtd/dialog.dtd
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- $Id: dialog.dtd,v 1.5 2001-03-01 11:52:05 dbo Exp $
+ $Id: dialog.dtd,v 1.6 2001-03-01 13:14:50 dbo Exp $
The Contents of this file are made available subject to the terms of
either of the following licenses
@@ -63,7 +63,6 @@
dialog:width %numeric; #REQUIRED
dialog:height %numeric; #REQUIRED
dialog:style-id CDATA #IMPLIED
- dialog:class-id CDATA #IMPLIED
dialog:tab-index %numeric; #IMPLIED
dialog:disabled %boolean; #IMPLIED
dialog:printable %boolean; #IMPLIED
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
index 863bd84bbf43..9f5b8e503f51 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmldlg_export.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: dbo $ $Date: 2001-03-01 11:52:05 $
+ * last change: $Author: dbo $ $Date: 2001-03-01 13:14:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -688,8 +688,6 @@ void ElementDescriptor::readDefaults()
Any a( _xProps->getPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM("Name") ) ) );
addAttr( OUString( RTL_CONSTASCII_USTRINGPARAM(XMLNS_DIALOGS_PREFIX ":id") ),
* reinterpret_cast< const OUString * >( a.getValue() ) );
- readStringAttr( OUString( RTL_CONSTASCII_USTRINGPARAM("ClassId") ),
- OUString( RTL_CONSTASCII_USTRINGPARAM(XMLNS_DIALOGS_PREFIX ":class-id") ) );
readLongAttr( OUString( RTL_CONSTASCII_USTRINGPARAM("TabIndex") ),
OUString( RTL_CONSTASCII_USTRINGPARAM(XMLNS_DIALOGS_PREFIX ":tab-index") ) );
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
index 04155569f325..5e4793305402 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmldlg_import.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: dbo $ $Date: 2001-03-01 11:22:45 $
+ * last change: $Author: dbo $ $Date: 2001-03-01 13:14:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -820,9 +820,6 @@ void ControlImportContext::importDefaults(
OUString( RTL_CONSTASCII_USTRINGPARAM("Name") ),
makeAny( _aId ) );
- importStringProperty( OUString( RTL_CONSTASCII_USTRINGPARAM("ClassId") ),
- OUString( RTL_CONSTASCII_USTRINGPARAM("class-id") ),
- xAttributes );
importLongProperty( OUString( RTL_CONSTASCII_USTRINGPARAM("TabIndex") ),
OUString( RTL_CONSTASCII_USTRINGPARAM("tab-index") ),
xAttributes );