Tag: cws_src680_qiq User: fs Date: 2006/06/30 06:27:29 Modified: dba/dbaccess/source/core/api/datasettings.cxx
Log: during #i51143#: PROPERTY_ID_HY0000 superseded by StandardSQLState.SQL_GENERAL_ERROR File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: datasettings.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/datasettings.cxx?r1=1.21&r2=1.21.2.1 Delta lines: +7 -7 ------------------- --- datasettings.cxx 20 Jun 2006 02:39:03 -0000 1.21 +++ datasettings.cxx 30 Jun 2006 13:27:27 -0000 1.21.2.1 @@ -4,9 +4,9 @@ * * $RCSfile: datasettings.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.21.2.1 $ * - * last change: $Author: hr $ $Date: 2006/06/20 02:39:03 $ + * last change: $Author: fs $ $Date: 2006/06/30 13:27:27 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -146,14 +146,14 @@ aFD.StyleName = rFont.GetStyleName(); aFD.Height = (sal_Int16)rFont.GetSize().Height(); aFD.Width = (sal_Int16)rFont.GetSize().Width(); - aFD.Family = rFont.GetFamily(); + aFD.Family = (sal_Int16)rFont.GetFamily(); aFD.CharSet = rFont.GetCharSet(); - aFD.Pitch = rFont.GetPitch(); + aFD.Pitch = (sal_Int16)rFont.GetPitch(); aFD.CharacterWidth = ConvertFontWidth( rFont.GetWidthType() ); aFD.Weight = ConvertFontWeight( rFont.GetWeight() ); aFD.Slant = (::com::sun::star::awt::FontSlant)rFont.GetItalic(); - aFD.Underline = rFont.GetUnderline(); - aFD.Strikeout = rFont.GetStrikeout(); + aFD.Underline = (sal_Int16)rFont.GetUnderline(); + aFD.Strikeout = (sal_Int16)rFont.GetStrikeout(); aFD.Orientation = rFont.GetOrientation(); aFD.Kerning = rFont.IsKerning(); aFD.WordLineMode = rFont.IsWordLineMode(); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
