diff options
-rw-r--r-- | vcl/Library_vcl.mk | 1 | ||||
-rw-r--r-- | vcl/Package_inc.mk | 1 | ||||
-rw-r--r-- | vcl/inc/vcl/javachild.hxx | 58 | ||||
-rw-r--r-- | vcl/source/window/javachild.cxx | 66 |
4 files changed, 0 insertions, 126 deletions
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk index 5d3f7e0f6e3e..7c9c9b37f5f9 100644 --- a/vcl/Library_vcl.mk +++ b/vcl/Library_vcl.mk @@ -236,7 +236,6 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\ vcl/source/window/dockwin \ vcl/source/window/floatwin \ vcl/source/window/introwin \ - vcl/source/window/javachild \ vcl/source/window/keycod \ vcl/source/window/keyevent \ vcl/source/window/menu \ diff --git a/vcl/Package_inc.mk b/vcl/Package_inc.mk index f45f2b9c3917..a0e090214025 100644 --- a/vcl/Package_inc.mk +++ b/vcl/Package_inc.mk @@ -83,7 +83,6 @@ $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/imgctrl.hxx,vcl/imgctrl.hxx)) $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/impdel.hxx,vcl/impdel.hxx)) $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/inputctx.hxx,vcl/inputctx.hxx)) $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/introwin.hxx,vcl/introwin.hxx)) -$(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/javachild.hxx,vcl/javachild.hxx)) $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/jobdata.hxx,vcl/jobdata.hxx)) $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/jobset.hxx,vcl/jobset.hxx)) $(eval $(call gb_Package_add_file,vcl_inc,inc/vcl/keycodes.hxx,vcl/keycodes.hxx)) diff --git a/vcl/inc/vcl/javachild.hxx b/vcl/inc/vcl/javachild.hxx deleted file mode 100644 index a7b39d0bff8f..000000000000 --- a/vcl/inc/vcl/javachild.hxx +++ /dev/null @@ -1,58 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#ifndef _SV_JAVACHILD_HXX -#define _SV_JAVACHILD_HXX - -#include <vcl/dllapi.h> -#include <vcl/syschild.hxx> - -// ------------------- -// - JavaChildWindow - -// ------------------- - -class VCL_DLLPUBLIC JavaChildWindow : public SystemChildWindow -{ -public: - - JavaChildWindow( Window* pParent, WinBits nStyle = 0 ); - JavaChildWindow( Window* pParent, const ResId& rResId ); - ~JavaChildWindow(); - - sal_IntPtr getParentWindowHandleForJava(); - -private: - - // Copy assignment is forbidden and not implemented. - SAL_DLLPRIVATE JavaChildWindow (const JavaChildWindow &); - SAL_DLLPRIVATE JavaChildWindow & operator= (const JavaChildWindow &); -}; - -#endif // _SV_JAVACHILD_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/source/window/javachild.cxx b/vcl/source/window/javachild.cxx deleted file mode 100644 index 1f15019999e5..000000000000 --- a/vcl/source/window/javachild.cxx +++ /dev/null @@ -1,66 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2008 by Sun Microsystems, Inc. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * $RCSfile: javachild.cxx,v $ - * $Revision: 1.12 $ - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_vcl.hxx" - -#include <vcl/javachild.hxx> - -// ------------------- -// - JavaChildWindow - -// ------------------- - -JavaChildWindow::JavaChildWindow( Window* pParent, WinBits nStyle ) : - SystemChildWindow( pParent, nStyle ) -{ -} - -// ----------------------------------------------------------------------- - -JavaChildWindow::JavaChildWindow( Window* pParent, const ResId& rResId ) : - SystemChildWindow( pParent, rResId ) -{ -} - -// ----------------------------------------------------------------------- - -JavaChildWindow::~JavaChildWindow() -{ -} - -// ----------------------------------------------------------------------- - -sal_IntPtr JavaChildWindow::getParentWindowHandleForJava() -{ - return SystemChildWindow::GetParentWindowHandle( sal_True ); -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |