Tag: cws_src680_os63 User: os Date: 06/05/08 03:32:22 Modified: /dba/dbaccess/source/ui/querydesign/ TableWindowData.cxx
Log: RESYNC: (1.4-1.5); FILE MERGED 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.3.458.2&r2=1.3.458.3 Delta lines: +13 -8 -------------------- --- TableWindowData.cxx 16 Sep 2005 00:11:26 -0000 1.3.458.2 +++ TableWindowData.cxx 8 May 2006 10:32:20 -0000 1.3.458.3 @@ -104,10 +104,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; } //------------------------------------------------------------------------------ @@ -117,10 +122,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]
