From 6d93be1f8e80df2b2fc30b0b3397405480fca7bc Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 31 Jul 2012 00:16:51 +0200 Subject: Remove unused header files As their content is unused. Change-Id: Ie17edae1c766b29ec649623c41cd3bfdc648f844 --- binfilter/bf_sc/source/ui/inc/imoptdlg.hxx | 2 - binfilter/bf_sfx2/source/appl/sfx2_appopen.cxx | 1 - binfilter/bf_sfx2/source/inc/referers.hxx | 32 ----------- .../bf_svtools/source/config/svt_itemholder2.cxx | 1 - binfilter/bf_sw/source/core/inc/blink.hxx | 56 ------------------- binfilter/bf_sw/source/core/layout/sw_newfrm.cxx | 1 - binfilter/bf_sw/source/ui/app/sw_swmodule.cxx | 2 - binfilter/bf_sw/source/ui/inc/glshell.hxx | 64 ---------------------- binfilter/inc/bf_svtools/apearcfg.hxx | 57 ------------------- binfilter/inc/bf_svx/txencbox.hxx | 28 ---------- 10 files changed, 244 deletions(-) delete mode 100644 binfilter/bf_sfx2/source/inc/referers.hxx delete mode 100644 binfilter/bf_sw/source/core/inc/blink.hxx delete mode 100644 binfilter/bf_sw/source/ui/inc/glshell.hxx delete mode 100644 binfilter/inc/bf_svtools/apearcfg.hxx delete mode 100644 binfilter/inc/bf_svx/txencbox.hxx diff --git a/binfilter/bf_sc/source/ui/inc/imoptdlg.hxx b/binfilter/bf_sc/source/ui/inc/imoptdlg.hxx index df738ec85..38581803a 100644 --- a/binfilter/bf_sc/source/ui/inc/imoptdlg.hxx +++ b/binfilter/bf_sc/source/ui/inc/imoptdlg.hxx @@ -30,8 +30,6 @@ #include -#include - #include "global.hxx" namespace binfilter { diff --git a/binfilter/bf_sfx2/source/appl/sfx2_appopen.cxx b/binfilter/bf_sfx2/source/appl/sfx2_appopen.cxx index 935ab06a0..cfdc02bba 100644 --- a/binfilter/bf_sfx2/source/appl/sfx2_appopen.cxx +++ b/binfilter/bf_sfx2/source/appl/sfx2_appopen.cxx @@ -70,7 +70,6 @@ #include "objsh.hxx" #include "objshimp.hxx" #include "openflag.hxx" -#include "referers.hxx" #include "request.hxx" #include "appimp.hxx" #include "appuno.hxx" diff --git a/binfilter/bf_sfx2/source/inc/referers.hxx b/binfilter/bf_sfx2/source/inc/referers.hxx deleted file mode 100644 index b95356f9e..000000000 --- a/binfilter/bf_sfx2/source/inc/referers.hxx +++ /dev/null @@ -1,32 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef _SFX_REFERERS_HXX -#define _SFX_REFERERS_HXX -namespace binfilter { - -#define SFX_REFERER_USER "private:user" -#define SFX_REFERER_APPEVENT "private:appevent" -#define SFX_REFERER_EXPLORER "private:explorer" -#define SFX_REFERER_NEWMENU "private:newmenu" - - -}//end of namespace binfilter -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/binfilter/bf_svtools/source/config/svt_itemholder2.cxx b/binfilter/bf_svtools/source/config/svt_itemholder2.cxx index ae2190a7f..ec5f9568f 100644 --- a/binfilter/bf_svtools/source/config/svt_itemholder2.cxx +++ b/binfilter/bf_svtools/source/config/svt_itemholder2.cxx @@ -26,7 +26,6 @@ #include -#include #include #include #include diff --git a/binfilter/bf_sw/source/core/inc/blink.hxx b/binfilter/bf_sw/source/core/inc/blink.hxx deleted file mode 100644 index 4bceda4e9..000000000 --- a/binfilter/bf_sw/source/core/inc/blink.hxx +++ /dev/null @@ -1,56 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef _BLINK_HXX -#define _BLINK_HXX - -class SwLinePortion; -class SwTxtFrm; - -#include -#include -namespace binfilter { - -class SwBlinkPortion -{ - Point aPos; - const SwLinePortion *pPor; - USHORT nDir; -public: - SwBlinkPortion( const SwLinePortion* pPortion, USHORT nDirection ) - { pPor = pPortion; nDir = nDirection; } - SwBlinkPortion( const SwBlinkPortion* pBlink, const SwLinePortion* pPort ) - { pPor = pPort; aPos = pBlink->aPos; nDir = pBlink->nDir; } - void SetPos( const Point& aNew ){ aPos = aNew; } - const Point& GetPos() const{ return aPos; } - const SwLinePortion *GetPortion() const{ return pPor; } - USHORT GetDirection() const { return nDir; } - BOOL operator<( const SwBlinkPortion& rBlinkPortion ) const - { return (long)pPor < (long)rBlinkPortion.pPor; } - BOOL operator==( const SwBlinkPortion& rBlinkPortion ) const - { return (long)pPor == (long)rBlinkPortion.pPor; } -}; - -typedef SwBlinkPortion* SwBlinkPortionPtr; -SV_DECL_PTRARR_SORT_DEL(SwBlinkList, SwBlinkPortionPtr, 0, 10) - -} //namespace binfilter -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/binfilter/bf_sw/source/core/layout/sw_newfrm.cxx b/binfilter/bf_sw/source/core/layout/sw_newfrm.cxx index 1b1f7845b..c305b655b 100644 --- a/binfilter/bf_sw/source/core/layout/sw_newfrm.cxx +++ b/binfilter/bf_sw/source/core/layout/sw_newfrm.cxx @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #include diff --git a/binfilter/bf_sw/source/ui/app/sw_swmodule.cxx b/binfilter/bf_sw/source/ui/app/sw_swmodule.cxx index e1931b68e..d1c520978 100644 --- a/binfilter/bf_sw/source/ui/app/sw_swmodule.cxx +++ b/binfilter/bf_sw/source/ui/app/sw_swmodule.cxx @@ -58,8 +58,6 @@ // OD 14.02.2003 #107424# #include -#include "glshell.hxx" - #include #include diff --git a/binfilter/bf_sw/source/ui/inc/glshell.hxx b/binfilter/bf_sw/source/ui/inc/glshell.hxx deleted file mode 100644 index a566d1df8..000000000 --- a/binfilter/bf_sw/source/ui/inc/glshell.hxx +++ /dev/null @@ -1,64 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef _AUTODOC_HXX -#define _AUTODOC_HXX - -#include "wdocsh.hxx" -namespace binfilter { - -class SwTextBlocks; - - -class SwGlosDocShell : public SwDocShell -{ -}; - - -class SwWebGlosDocShell : public SwWebDocShell -{ - -public: - SwWebGlosDocShell(); - virtual ~SwWebGlosDocShell(); -}; - -} //namespace binfilter -#endif - - - - - - - - - - - - - - - - - - - - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/binfilter/inc/bf_svtools/apearcfg.hxx b/binfilter/inc/bf_svtools/apearcfg.hxx deleted file mode 100644 index 860427df5..000000000 --- a/binfilter/inc/bf_svtools/apearcfg.hxx +++ /dev/null @@ -1,57 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef _SVT_APEARCFG_HXX -#define _SVT_APEARCFG_HXX - - -#include -#include - -class Application; - -namespace binfilter { - -/*-------------------------------------------------------------------- - Beschreibung: - --------------------------------------------------------------------*/ -typedef enum { - LookStardivision = 0, - LookMotif, - LookWindows, - LookOSTwo, - LookMacintosh -} SystemLook; - -typedef enum { - SnapToButton = 0, - SnapToMiddle, - NoSnap -} SnapType; - -typedef enum { // MUST match the order chosen in ListBox LB_DRAG_MODE in optgdlg.src - DragFullWindow, - DragFrame, - DragSystemDep -} DragMode; - -} - -#endif // _OFA_APEARCFG_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/binfilter/inc/bf_svx/txencbox.hxx b/binfilter/inc/bf_svx/txencbox.hxx deleted file mode 100644 index 3bebe8877..000000000 --- a/binfilter/inc/bf_svx/txencbox.hxx +++ /dev/null @@ -1,28 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ -#ifndef _SVX_TXENCBOX_HXX -#define _SVX_TXENCBOX_HXX - -// include --------------------------------------------------------------- - -#include -#include -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit