diff options
author | Sander Vesik <svesik@openoffice.org> | 2004-04-21 13:06:29 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2004-04-21 13:06:29 +0000 |
commit | 30aa1f96c4f7adbec06d79fb4e6e0e12194e0902 (patch) | |
tree | d14fa6a84cd4174e0a27ddec1ddb752430e4b2c9 /comphelper | |
parent | d18ee325a123af8df51a7cfc9420dcc35e428c81 (diff) |
INTEGRATION: CWS ooo20040329 (1.3.156); FILE MERGED
2004/03/17 09:19:55 waratah 1.3.156.1: #i1858# alter the order of some definitions to fix some -Wall warnings
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/streaming/streamsection.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/comphelper/source/streaming/streamsection.cxx b/comphelper/source/streaming/streamsection.cxx index 46f19f9c7f28..68a7aa1f948f 100644 --- a/comphelper/source/streaming/streamsection.cxx +++ b/comphelper/source/streaming/streamsection.cxx @@ -2,9 +2,9 @@ * * $RCSfile: streamsection.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2001-10-23 12:35:12 $ + * last change: $Author: svesik $ $Date: 2004-04-21 14:06:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -72,8 +72,8 @@ namespace comphelper //------------------------------------------------------------------------- OStreamSection::OStreamSection(const staruno::Reference< stario::XDataInputStream >& _rxInput) - :m_xInStream(_rxInput) - ,m_xMarkStream(_rxInput, ::com::sun::star::uno::UNO_QUERY) + :m_xMarkStream(_rxInput, ::com::sun::star::uno::UNO_QUERY) + ,m_xInStream(_rxInput) ,m_nBlockStart(-1) ,m_nBlockLen(-1) { @@ -87,8 +87,8 @@ OStreamSection::OStreamSection(const staruno::Reference< stario::XDataInputStrea //------------------------------------------------------------------------- OStreamSection::OStreamSection(const staruno::Reference< stario::XDataOutputStream >& _rxOutput, sal_Int32 _nPresumedLength) - :m_xOutStream(_rxOutput) - ,m_xMarkStream(_rxOutput, ::com::sun::star::uno::UNO_QUERY) + :m_xMarkStream(_rxOutput, ::com::sun::star::uno::UNO_QUERY) + ,m_xOutStream(_rxOutput) ,m_nBlockStart(-1) ,m_nBlockLen(-1) { |