View | Details | Raw Unified | Return to issue 12911
Collapse All | Expand All

(-)oo_1.1_src/extensions/source/plugin/base/manager.cxx.plugin (-1 / +1 lines)
Lines 257-263 Link Here
257
    pImpl->provideNewStream( pImpl->getDescription().Mimetype,
257
    pImpl->provideNewStream( pImpl->getDescription().Mimetype,
258
                             Reference< com::sun::star::io::XActiveDataSource >(),
258
                             Reference< com::sun::star::io::XActiveDataSource >(),
259
                             url,
259
                             url,
260
                             0, 0, sal_False );
260
                             0, 0, sal_True );
261
261
262
	if( ! pImpl->getPluginComm() )
262
	if( ! pImpl->getPluginComm() )
263
	{
263
	{
(-)oo_1.1_src/extensions/source/plugin/base/context.cxx.plugin (-1 / +1 lines)
Lines 166-172 Link Here
166
		plugin->provideNewStream( ::rtl::OUString(),
166
		plugin->provideNewStream( ::rtl::OUString(),
167
								  Reference< XActiveDataSource >(),
167
								  Reference< XActiveDataSource >(),
168
								  aURL.GetMainURL(INetURLObject::DECODE_TO_IURI),
168
								  aURL.GetMainURL(INetURLObject::DECODE_TO_IURI),
169
								  0, 0, sal_False );
169
								  0, 0, sal_True );
170
		return;
170
		return;
171
	}
171
	}
172
	
172
	
(-)oo_1.1_src/extensions/source/plugin/base/xplugin.cxx.plugin (-1 / +1 lines)
Lines 641-647 Link Here
641
641
642
#endif
642
#endif
643
    if( ! m_pPluginComm->NPP_NewStream( &m_aInstance, (char*)aMIME.getStr(),
643
    if( ! m_pPluginComm->NPP_NewStream( &m_aInstance, (char*)aMIME.getStr(),
644
                                        pStream->getStream(), sal_False,
644
                                        pStream->getStream(), isfile,
645
                                        &stype ) )
645
                                        &stype ) )
646
    {
646
    {
647
        getPluginComm()->NPP_SetWindow( getNPPInstance(), &m_aNPWindow );
647
        getPluginComm()->NPP_SetWindow( getNPPInstance(), &m_aNPWindow );
(-)oo_1.1_src/extensions/source/plugin/unx/sysplug.cxx.plugin (-1 / +5 lines)
Lines 62-67 Link Here
62
62
63
#include <sys/types.h>
63
#include <sys/types.h>
64
#include <signal.h>
64
#include <signal.h>
65
#include <sys/resource.h>
66
#include <sys/wait.h>
65
#include <osl/thread.h>
67
#include <osl/thread.h>
66
68
67
#include <plugin/impl.hxx>
69
#include <plugin/impl.hxx>
Lines 126-131 Link Here
126
UnxPluginComm::~UnxPluginComm()
128
UnxPluginComm::~UnxPluginComm()
127
{
129
{
128
	NPP_Shutdown();
130
	NPP_Shutdown();
129
	if( m_nCommPID != -1 && m_nCommPID != 0 )
131
	if( m_nCommPID != -1 && m_nCommPID != 0 ) {
130
		kill( m_nCommPID, 9 );
132
		kill( m_nCommPID, 9 );
133
		wait4(m_nCommPID,0,0,0);
134
	}
131
}
135
}

Return to issue 12911