summaryrefslogtreecommitdiff
path: root/avmedia
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-12-07 10:43:46 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-12-07 10:43:46 +0000
commit002c0fcb17d2f5e55fa681ab671fcfb6208c061d (patch)
tree29ef6d6043dfbb88d2de66f1ababab5d0e8e3d6d /avmedia
parent801183f8a6c54aa8e9a333387f0c85aedc2171fe (diff)
INTEGRATION: CWS macosxquicktime01 (1.4.44); FILE MERGED
2007/10/26 11:30:40 pl 1.4.44.1: #i82621# transport window handle as sal_IntPtr
Diffstat (limited to 'avmedia')
-rw-r--r--avmedia/source/win/window.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/avmedia/source/win/window.cxx b/avmedia/source/win/window.cxx
index 22e00e753cbf..f9e66f345dc3 100644
--- a/avmedia/source/win/window.cxx
+++ b/avmedia/source/win/window.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: window.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 11:26:55 $
+ * last change: $Author: vg $ $Date: 2007-12-07 11:43:46 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -322,12 +322,12 @@ bool Window::create( const uno::Sequence< uno::Any >& rArguments )
if( !mnFrameWnd && pVideoWindow && mpWndClass )
{
awt::Rectangle aRect;
- sal_Int32 nWnd;
+ sal_IntPtr nWnd;
rArguments[ 0 ] >>= nWnd;
rArguments[ 1 ] >>= aRect;
- mnParentWnd = nWnd;
+ mnParentWnd = static_cast<int>(nWnd);
mnFrameWnd = (int) ::CreateWindow( mpWndClass->lpszClassName, NULL,
WS_VISIBLE | WS_CHILD | WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
aRect.X, aRect.Y, aRect.Width, aRect.Height,