Tag: cws_src680_warnings01 User: sb Date: 06/04/07 13:55:38 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.4.48.1&r2=1.4.48.2 Delta lines: +16 -11 --------------------- --- TableWindowData.cxx 24 Mar 2006 15:36:27 -0000 1.4.48.1 +++ TableWindowData.cxx 7 Apr 2006 20:55:36 -0000 1.4.48.2 @@ -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]
