Kaydet (Commit) d66b7570 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Leftover XLIB_Window -> Window

Change-Id: I51aa3e3fbf440bbd16d43ab8113cd69937060bf3
üst 0f5756e2
......@@ -536,7 +536,7 @@ void XPlugin_Impl::loadPlugin()
if( !socketpair( AF_UNIX, SOCK_STREAM, 0, sv ) )
pComm = new UnxPluginComm( m_aDescription.Mimetype,
m_aDescription.PluginName,
(XLIB_Window)pEnvData->aWindow,
(Window)pEnvData->aWindow,
sv[0],
sv[1]
);
......
......@@ -41,7 +41,7 @@ private:
public:
UnxPluginComm( const OUString& mimetype,
const OUString& library,
XLIB_Window aParent,
Window aParent,
int nDescriptor1,
int nDescriptor2
);
......
......@@ -764,7 +764,7 @@ IMPL_LINK( PluginConnector, WorkOnNewMessageHdl, Mediator*, /*pMediator*/ )
{
if( ! pInst->pWidget )
{
pInst->pWidget = CreateNewShell( &(pInst->pShell), (XLIB_Window)pWindow->window );
pInst->pWidget = CreateNewShell( &(pInst->pShell), (Window)pWindow->window );
}
// fill in NPWindow and NPCallbackStruct
......
......@@ -119,7 +119,7 @@ IMPL_LINK( PluginConnector, NewMessageHdl, Mediator*, /*pMediator*/ )
}
Widget createSubWidget( char* /*pPluginText*/, Widget shell, XLIB_Window aParentWindow )
Widget createSubWidget( char* /*pPluginText*/, Widget shell, Window aParentWindow )
{
Widget newWidget = XtVaCreateManagedWidget(
#if defined USE_MOTIF
......@@ -152,7 +152,7 @@ Widget createSubWidget( char* /*pPluginText*/, Widget shell, XLIB_Window aParent
return newWidget;
}
void* CreateNewShell( void** pShellReturn, XLIB_Window aParentWindow )
void* CreateNewShell( void** pShellReturn, Window aParentWindow )
{
String n, c;
XtGetApplicationNameAndClass(pXtAppDisplay, &n, &c);
......
......@@ -22,7 +22,7 @@
#include <sal/config.h>
void* CreateNewShell( void** pShellReturn, XLIB_Window aParentWindow );
void* CreateNewShell( void** pShellReturn, Window aParentWindow );
void LoadAdditionalLibs(const char*);
......
......@@ -52,7 +52,7 @@
UnxPluginComm::UnxPluginComm(
const OUString& /*mimetype*/,
const OUString& library,
XLIB_Window aParent,
Window aParent,
int nDescriptor1,
int nDescriptor2
) :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment