Tag: cws_src680_sixtyfour02 User: cmc Date: 06/02/22 02:46:26 Modified: /dba/dbaccess/source/ui/querydesign/ TableWindowData.cxx
Log: #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.4.96.1 Delta lines: +13 -8 -------------------- --- TableWindowData.cxx 8 Sep 2005 16:30:55 -0000 1.4 +++ TableWindowData.cxx 22 Feb 2006 10:46:23 -0000 1.4.96.1 @@ -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]
