diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2001-12-14 11:08:03 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2001-12-14 11:08:03 +0000 |
commit | ceaa1fda996273f39e2601529ad76e85fcaca553 (patch) | |
tree | 8e1e1430e650ed9330288aa8a0557e15e59db635 | |
parent | 7fa3d20e73a01451b9e93a80487ccb1cc6ae3bd5 (diff) |
#95841# omit border for dialog
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx | 8 | ||||
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx index b3474e1aa0f3..e185fea4b3a4 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_expmodels.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmldlg_expmodels.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: dbo $ $Date: 2001-10-22 08:52:20 $ + * last change: $Author: dbo $ $Date: 2001-12-14 12:08:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -860,8 +860,8 @@ void ElementDescriptor::readDialogModel( StyleBag * all_styles ) Style aStyle( 0x1 | 0x4 | 0x8 ); if (readProp( OUString( RTL_CONSTASCII_USTRINGPARAM("BackgroundColor") ) ) >>= aStyle._backgroundColor) aStyle._set |= 0x1; - if (readProp( OUString( RTL_CONSTASCII_USTRINGPARAM("Border") ) ) >>= aStyle._border) - aStyle._set |= 0x4; +// if (readProp( OUString( RTL_CONSTASCII_USTRINGPARAM("Border") ) ) >>= aStyle._border) +// aStyle._set |= 0x4; if (readProp( OUString( RTL_CONSTASCII_USTRINGPARAM("FontDescriptor") ) ) >>= aStyle._descr) aStyle._set |= 0x8; if (aStyle._set) diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx index 70a32710f156..96467fae94d7 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmldlg_impmodels.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: dbo $ $Date: 2001-10-23 13:18:52 $ + * last change: $Author: dbo $ $Date: 2001-12-14 12:08:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1792,7 +1792,7 @@ void WindowElement::endElement() { StyleElement * pStyle = static_cast< StyleElement * >( xStyle.get () ); pStyle->importBackgroundColorStyle( xProps ); - pStyle->importBorderStyle( xProps ); +// pStyle->importBorderStyle( xProps ); pStyle->importFontStyle( xProps ); } |