diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 11:46:07 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-08-19 11:46:07 +0000 |
commit | 93f18224575b3f1bdf9179b84758380689f91950 (patch) | |
tree | b93e76172f617923875e0badacc5fefdce1e233a /automation | |
parent | 4621794d635aa94d84623690a73e6c5df2a3b80a (diff) |
INTEGRATION: CWS gh15 (1.23.4); FILE MERGED
2008/07/22 09:47:19 gh 1.23.4.2: RESYNC: (1.23-1.25); FILE MERGED
2008/04/23 08:42:07 gh 1.23.4.1: #i79363#patch by cmc
Diffstat (limited to 'automation')
-rw-r--r-- | automation/source/server/server.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/automation/source/server/server.cxx b/automation/source/server/server.cxx index 87f299f9ca43..5d84cb6cd75d 100644 --- a/automation/source/server/server.cxx +++ b/automation/source/server/server.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: server.cxx,v $ - * $Revision: 1.25 $ + * $Revision: 1.26 $ * * This file is part of OpenOffice.org. * @@ -757,8 +757,6 @@ BOOL ImplRemoteControl::QueCommands( ULONG nServiceId, SvStream *pIn ) StatementList::bReadingCommands = TRUE; - - SCmdStream *pCmdStream = new SCmdStream(pIn); #if OSL_DEBUG_LEVEL > 1 if (!m_pDbgWin->bQuiet) m_pDbgWin->Show(); @@ -773,6 +771,8 @@ BOOL ImplRemoteControl::QueCommands( ULONG nServiceId, SvStream *pIn ) return FALSE; } + SCmdStream *pCmdStream = new SCmdStream(pIn); + pCmdStream->Read( nId ); while( !pIn->IsEof() ) { |