User: vg Date: 06/03/16 04:49:04 Modified: /dba/dbaccess/source/ui/querydesign/ TableWindowData.cxx
Log: INTEGRATION: CWS sixtyfour02 (1.4.96); FILE MERGED 2006/02/22 10:46:23 cmc 1.4.96.1: #i62334# longs being streamed to disk File Changes: Directory: /dba/dbaccess/source/ui/querydesign/ =============================================== File [changed]: TableWindowData.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/querydesign/TableWindowData.cxx?r1=1.4&r2=1.5 Delta lines: +13 -8 -------------------- --- TableWindowData.cxx 8 Sep 2005 16:30:55 -0000 1.4 +++ TableWindowData.cxx 16 Mar 2006 12:49:01 -0000 1.5 @@ -105,10 +105,15 @@ _rxIn >> m_sComposedName; _rxIn >> m_aTableName; _rxIn >> m_aWinName; - _rxIn >> m_aPosition.X(); - _rxIn >> m_aPosition.Y(); - _rxIn >> m_aSize.Width(); - _rxIn >> m_aSize.Height(); + sal_Int32 ns32Temp; + _rxIn >> ns32Temp; + m_aPosition.X() = ns32Temp; + _rxIn >> ns32Temp; + m_aPosition.Y() = ns32Temp; + _rxIn >> ns32Temp; + m_aSize.Width() = ns32Temp; + _rxIn >> ns32Temp; + m_aSize.Height() = ns32Temp; _rxIn >> m_bShowAll; } //------------------------------------------------------------------------------ @@ -118,10 +123,10 @@ _rxOut << m_sComposedName; _rxOut << m_aTableName; _rxOut << m_aWinName; - _rxOut << m_aPosition.X(); - _rxOut << m_aPosition.Y(); - _rxOut << m_aSize.Width(); - _rxOut << m_aSize.Height(); + _rxOut << static_cast<sal_Int32>(m_aPosition.X()); + _rxOut << static_cast<sal_Int32>(m_aPosition.Y()); + _rxOut << static_cast<sal_Int32>(m_aSize.Width()); + _rxOut << static_cast<sal_Int32>(m_aSize.Height()); _rxOut << m_bShowAll; } // ----------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
