From 2b12a5b87b1de9ae95d9562ba21201890b1100c5 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 10 Feb 2014 09:29:34 +0000 Subject: the return of callcatcher Change-Id: I447ebcc61ff061bce15678c6fcfd3d0a4669908f --- .../accessibility/standard/vclxaccessiblelist.hxx | 1 - .../source/standard/vclxaccessiblelist.cxx | 14 - basctl/source/basicide/moduldlg.cxx | 5 - basctl/source/basicide/moduldlg.hxx | 1 - chart2/Library_chartcontroller.mk | 1 - chart2/source/controller/dialogs/Bitmaps.hrc | 3 - chart2/source/controller/dialogs/Bitmaps.src | 9 - .../controller/dialogs/RangeSelectionButton.cxx | 41 --- chart2/source/controller/dialogs/Strings.src | 10 - .../controller/dialogs/TextDirectionListBox.cxx | 15 -- chart2/source/controller/dialogs/res_ErrorBar.cxx | 2 +- .../controller/dialogs/res_LegendPosition.cxx | 8 - .../source/controller/dialogs/tp_RangeChooser.hxx | 1 - .../source/controller/inc/RangeSelectionButton.hxx | 42 --- .../source/controller/inc/TextDirectionListBox.hxx | 2 - chart2/source/controller/inc/res_ErrorBar.hxx | 3 +- .../source/controller/inc/res_LegendPosition.hxx | 2 - chart2/source/inc/Strings.hrc | 1 - include/sfx2/basedlgs.hxx | 1 - include/sfx2/tabdlg.hxx | 6 - include/sfx2/templatelocalview.hxx | 1 - include/svtools/accessibleruler.hxx | 10 - include/svtools/fmtfield.hxx | 7 - include/svtools/svtabbx.hxx | 1 - include/svx/dialcontrol.hxx | 1 - include/svx/dlgctrl.hxx | 2 - include/svx/langbox.hxx | 1 - include/svx/txencbox.hxx | 5 +- include/svx/wrapfield.hxx | 1 - sc/Library_sc.mk | 1 - sc/source/ui/dbgui/expftext.cxx | 83 ------ sc/source/ui/inc/dbnamdlg.hxx | 1 - sc/source/ui/inc/expftext.hxx | 39 --- sc/source/ui/inc/instbdlg.hxx | 1 - sc/source/ui/inc/simpref.hxx | 1 - sc/source/ui/inc/xmlsourcedlg.hxx | 1 - sc/source/ui/sidebar/CellLineStyleValueSet.cxx | 5 - sc/source/ui/sidebar/CellLineStyleValueSet.hxx | 2 - sd/source/ui/sidebar/LayoutMenu.cxx | 57 ---- sd/source/ui/sidebar/LayoutMenu.hxx | 4 - sfx2/source/control/templatelocalview.cxx | 6 - sfx2/source/dialog/basedlgs.cxx | 20 -- sfx2/source/dialog/tabdlg.cxx | 40 --- svtools/source/contnr/svtabbx.cxx | 12 - svtools/source/control/accessibleruler.cxx | 16 -- svtools/source/control/fmtfield.cxx | 12 - svx/source/dialog/dialcontrol.cxx | 7 - svx/source/dialog/dlgctrl.cxx | 18 -- svx/source/dialog/langbox.cxx | 9 - svx/source/dialog/txencbox.cxx | 7 - svx/source/dialog/wrapfield.cxx | 5 - sw/inc/docsh.hxx | 3 - sw/source/core/access/accpara.cxx | 60 ----- sw/source/core/access/accpara.hxx | 1 - sw/source/core/text/inftxt.cxx | 51 ---- sw/source/core/text/inftxt.hxx | 14 - sw/source/ui/app/docsh.cxx | 18 -- unusedcode.easy | 294 ++++++++++++++++++--- 58 files changed, 255 insertions(+), 730 deletions(-) delete mode 100644 chart2/source/controller/dialogs/RangeSelectionButton.cxx delete mode 100644 chart2/source/controller/inc/RangeSelectionButton.hxx delete mode 100644 sc/source/ui/dbgui/expftext.cxx delete mode 100644 sc/source/ui/inc/expftext.hxx diff --git a/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx b/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx index ba0f2b7b5331..b3c3fc6898a6 100644 --- a/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx +++ b/accessibility/inc/accessibility/standard/vclxaccessiblelist.hxx @@ -208,7 +208,6 @@ private: */ void clearItems(); - void adjustEntriesIndexInParent(ListItems::iterator& _aBegin,::std::mem_fun_t& _rMemFun); void UpdateEntryRange_Impl (void); protected: void UpdateSelection_Impl (sal_uInt16 nPos = 0); diff --git a/accessibility/source/standard/vclxaccessiblelist.cxx b/accessibility/source/standard/vclxaccessiblelist.cxx index debef709868e..44fb488b5698 100644 --- a/accessibility/source/standard/vclxaccessiblelist.cxx +++ b/accessibility/source/standard/vclxaccessiblelist.cxx @@ -505,21 +505,7 @@ void VCLXAccessibleList::UpdateSelection (OUString sTextOfSelectedItem) } } } -// ----------------------------------------------------------------------------- -void VCLXAccessibleList::adjustEntriesIndexInParent(ListItems::iterator& _aBegin,::std::mem_fun_t& _rMemFun) -{ - ListItems::iterator aIter = _aBegin; - ListItems::iterator aEnd = m_aAccessibleChildren.end(); - // adjust the index inside the VCLXAccessibleListItem - for (;aIter != aEnd ; ++aIter) - { - Reference< XAccessible > xHold = *aIter; - VCLXAccessibleListItem* pItem = static_cast(xHold.get()); - if ( pItem ) - _rMemFun(pItem); - } -} // ----------------------------------------------------------------------------- Reference VCLXAccessibleList::CreateChild (sal_Int32 i) diff --git a/basctl/source/basicide/moduldlg.cxx b/basctl/source/basicide/moduldlg.cxx index 793e873e3e3f..f8f3a1423081 100644 --- a/basctl/source/basicide/moduldlg.cxx +++ b/basctl/source/basicide/moduldlg.cxx @@ -52,11 +52,6 @@ using namespace ::com::sun::star::resource; // ============== // -ExtTreeListBox::ExtTreeListBox(Window* pParent, ResId const& rRes) - : TreeListBox(pParent, rRes) -{ -} - ExtTreeListBox::ExtTreeListBox(Window* pParent, WinBits nStyle) : TreeListBox(pParent, nStyle) { diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx index e755b74423fb..ee85969dac4b 100644 --- a/basctl/source/basicide/moduldlg.hxx +++ b/basctl/source/basicide/moduldlg.hxx @@ -111,7 +111,6 @@ protected: SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos, sal_Bool bMove ); public: - ExtTreeListBox(Window* pParent, const ResId& rRes); ExtTreeListBox(Window* pParent, WinBits nStyle); ~ExtTreeListBox(); }; diff --git a/chart2/Library_chartcontroller.mk b/chart2/Library_chartcontroller.mk index bf59cab99831..6a4907feaf85 100644 --- a/chart2/Library_chartcontroller.mk +++ b/chart2/Library_chartcontroller.mk @@ -108,7 +108,6 @@ $(eval $(call gb_Library_add_exception_objects,chartcontroller,\ chart2/source/controller/dialogs/dlg_ShapeParagraph \ chart2/source/controller/dialogs/dlg_View3D \ chart2/source/controller/dialogs/ObjectNameProvider \ - chart2/source/controller/dialogs/RangeSelectionButton \ chart2/source/controller/dialogs/RangeSelectionHelper \ chart2/source/controller/dialogs/RangeSelectionListener \ chart2/source/controller/dialogs/res_BarGeometry \ diff --git a/chart2/source/controller/dialogs/Bitmaps.hrc b/chart2/source/controller/dialogs/Bitmaps.hrc index bcf1f37b8b6c..349953b7d6a5 100644 --- a/chart2/source/controller/dialogs/Bitmaps.hrc +++ b/chart2/source/controller/dialogs/Bitmaps.hrc @@ -218,9 +218,6 @@ #define BMP_REGRESSION_POLYNOMIAL (RID_APP_START + 110) #define BMP_REGRESSION_MOVING_AVERAGE (RID_APP_START + 111) -// hide-button for range-choosing -#define IMG_SELECTRANGE (RID_APP_START + 100) - // CHART_BITMAPS_HRC #endif diff --git a/chart2/source/controller/dialogs/Bitmaps.src b/chart2/source/controller/dialogs/Bitmaps.src index 9ee63814eea4..d4f780990e52 100644 --- a/chart2/source/controller/dialogs/Bitmaps.src +++ b/chart2/source/controller/dialogs/Bitmaps.src @@ -595,14 +595,5 @@ Image BMP_REGRESSION_MOVING_AVERAGE File = "regavg.png" ; }; }; -//--------------------- -Image IMG_SELECTRANGE -{ - ImageBitmap = Bitmap - { - File = "selectrange.png"; - }; - MaskColor = STD_MASKCOLOR; -}; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/controller/dialogs/RangeSelectionButton.cxx b/chart2/source/controller/dialogs/RangeSelectionButton.cxx deleted file mode 100644 index 2b14e8e77c0d..000000000000 --- a/chart2/source/controller/dialogs/RangeSelectionButton.cxx +++ /dev/null @@ -1,41 +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 . - */ - -#include "RangeSelectionButton.hxx" -#include "Bitmaps.hrc" -#include "Strings.hrc" -#include "ResId.hxx" - -namespace chart -{ - -RangeSelectionButton::RangeSelectionButton( Window *pParent, const ResId& rResId ) : - ImageButton( pParent, rResId ) -{ - SetModeImage( Image( SchResId( IMG_SELECTRANGE) ) ); - this->SetQuickHelpText(SCH_RESSTR(STR_TIP_SELECT_RANGE)); -} - -RangeSelectionButton::~RangeSelectionButton() -{ -} - -} //namespace chart - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/controller/dialogs/Strings.src b/chart2/source/controller/dialogs/Strings.src index f03ce30259c7..371e2e9f6beb 100644 --- a/chart2/source/controller/dialogs/Strings.src +++ b/chart2/source/controller/dialogs/Strings.src @@ -373,16 +373,6 @@ String STR_OBJECT_SHAPE Text [ en-US ] = "Drawing Object" ; }; -//----------------------------------------------------------------------------- -//----------------------------------------------------------------------------- -//----------------------------------------------------------------------------- -//----------------------------------------------------------------------------- - -String STR_TIP_SELECT_RANGE -{ - Text [ en-US ] = "Select data range" ; -}; - String STR_TIP_DATASERIES { Text [ en-US ] = "Data Series '%SERIESNAME'" ; diff --git a/chart2/source/controller/dialogs/TextDirectionListBox.cxx b/chart2/source/controller/dialogs/TextDirectionListBox.cxx index 25efde3be919..46149a6befc5 100644 --- a/chart2/source/controller/dialogs/TextDirectionListBox.cxx +++ b/chart2/source/controller/dialogs/TextDirectionListBox.cxx @@ -27,21 +27,6 @@ namespace chart { -TextDirectionListBox::TextDirectionListBox( Window* pParent, const ResId& rResId, Window* pWindow1, Window* pWindow2 ) : - svx::FrameDirectionListBox( pParent, rResId ) -{ - InsertEntryValue( SCH_RESSTR( STR_TEXT_DIRECTION_LTR ), FRMDIR_HORI_LEFT_TOP ); - InsertEntryValue( SCH_RESSTR( STR_TEXT_DIRECTION_RTL ), FRMDIR_HORI_RIGHT_TOP ); - InsertEntryValue( SCH_RESSTR( STR_TEXT_DIRECTION_SUPER ), FRMDIR_ENVIRONMENT ); - - if( !SvtLanguageOptions().IsCTLFontEnabled() ) - { - Hide(); - if( pWindow1 ) pWindow1->Hide(); - if( pWindow2 ) pWindow2->Hide(); - } -} - TextDirectionListBox::TextDirectionListBox( Window* pParent, Window* pWindow1, Window* pWindow2 ) : svx::FrameDirectionListBox( pParent, WB_BORDER | WB_TABSTOP | WB_DROPDOWN) { diff --git a/chart2/source/controller/dialogs/res_ErrorBar.cxx b/chart2/source/controller/dialogs/res_ErrorBar.cxx index fce3938852b1..b5a865019631 100644 --- a/chart2/source/controller/dialogs/res_ErrorBar.cxx +++ b/chart2/source/controller/dialogs/res_ErrorBar.cxx @@ -430,7 +430,7 @@ IMPL_LINK_NOARG(ErrorBarResources, IndicatorChanged) return 0; } -IMPL_LINK( ErrorBarResources, ChooseRange, RangeSelectionButton *, pButton ) +IMPL_LINK( ErrorBarResources, ChooseRange, PushButton*, pButton ) { OSL_ASSERT( m_apRangeSelectionHelper.get()); if( ! m_apRangeSelectionHelper.get()) diff --git a/chart2/source/controller/dialogs/res_LegendPosition.cxx b/chart2/source/controller/dialogs/res_LegendPosition.cxx index f50a885cbf4a..fb05a6a687e2 100644 --- a/chart2/source/controller/dialogs/res_LegendPosition.cxx +++ b/chart2/source/controller/dialogs/res_LegendPosition.cxx @@ -242,14 +242,6 @@ void LegendPositionResources::SetChangeHdl( const Link& rLink ) m_aChangeLink = rLink; } -void LegendPositionResources::SetAccessibleRelationMemberOf(Window* pMemberOf) -{ - m_pRbtLeft->SetAccessibleRelationMemberOf(pMemberOf); - m_pRbtRight->SetAccessibleRelationMemberOf(pMemberOf); - m_pRbtTop->SetAccessibleRelationMemberOf(pMemberOf); - m_pRbtBottom->SetAccessibleRelationMemberOf(pMemberOf); -} - } //namespace chart /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/controller/dialogs/tp_RangeChooser.hxx b/chart2/source/controller/dialogs/tp_RangeChooser.hxx index 9f3e5386dd75..3c6bf3751a29 100644 --- a/chart2/source/controller/dialogs/tp_RangeChooser.hxx +++ b/chart2/source/controller/dialogs/tp_RangeChooser.hxx @@ -21,7 +21,6 @@ #define INCLUDED_CHART2_SOURCE_CONTROLLER_DIALOGS_TP_RANGECHOOSER_HXX #include "RangeSelectionListener.hxx" -#include "RangeSelectionButton.hxx" #include "TabPageNotifiable.hxx" #include diff --git a/chart2/source/controller/inc/RangeSelectionButton.hxx b/chart2/source/controller/inc/RangeSelectionButton.hxx deleted file mode 100644 index b2fe9ac5bd40..000000000000 --- a/chart2/source/controller/inc/RangeSelectionButton.hxx +++ /dev/null @@ -1,42 +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 INCLUDED_CHART2_SOURCE_CONTROLLER_INC_RANGESELECTIONBUTTON_HXX -#define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_RANGESELECTIONBUTTON_HXX - -// header for Class ImageButton -#include - -namespace chart -{ - -/** -*/ - -class RangeSelectionButton : public ImageButton -{ -public: - RangeSelectionButton( Window* pParent, const ResId& rResId ); - virtual ~RangeSelectionButton(); -}; - -} //namespace chart -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/chart2/source/controller/inc/TextDirectionListBox.hxx b/chart2/source/controller/inc/TextDirectionListBox.hxx index 80a4aaefd7d7..40144e31d728 100644 --- a/chart2/source/controller/inc/TextDirectionListBox.hxx +++ b/chart2/source/controller/inc/TextDirectionListBox.hxx @@ -30,8 +30,6 @@ namespace chart class TextDirectionListBox : public svx::FrameDirectionListBox { public: - explicit TextDirectionListBox( Window* pParent, const ResId& rResId, - Window* pWindow1 = 0, Window* pWindow2 = 0 ); explicit TextDirectionListBox( Window* pParent, Window* pWindow1 = 0, Window* pWindow2 = 0 ); virtual ~TextDirectionListBox(); diff --git a/chart2/source/controller/inc/res_ErrorBar.hxx b/chart2/source/controller/inc/res_ErrorBar.hxx index 17b7e3b6a881..0825e45a5f65 100644 --- a/chart2/source/controller/inc/res_ErrorBar.hxx +++ b/chart2/source/controller/inc/res_ErrorBar.hxx @@ -27,7 +27,6 @@ #include #include #include "chartview/ChartSfxItemIds.hxx" -#include "RangeSelectionButton.hxx" #include "RangeSelectionListener.hxx" @@ -128,7 +127,7 @@ private: DECL_LINK( SynchronizePosAndNeg, void * ); DECL_LINK( PosValueChanged, void * ); DECL_LINK( IndicatorChanged, void * ); - DECL_LINK( ChooseRange, RangeSelectionButton * ); + DECL_LINK( ChooseRange, PushButton * ); DECL_LINK( RangeChanged, Edit * ); void UpdateControlStates(); diff --git a/chart2/source/controller/inc/res_LegendPosition.hxx b/chart2/source/controller/inc/res_LegendPosition.hxx index f1989c676ab0..3a739ce65ea7 100644 --- a/chart2/source/controller/inc/res_LegendPosition.hxx +++ b/chart2/source/controller/inc/res_LegendPosition.hxx @@ -53,8 +53,6 @@ public: DECL_LINK( PositionEnableHdl, void* ); DECL_LINK( PositionChangeHdl, RadioButton* ); - void SetAccessibleRelationMemberOf(Window* pMemberOf); - private: void impl_setRadioButtonToggleHdl(); diff --git a/chart2/source/inc/Strings.hrc b/chart2/source/inc/Strings.hrc index c0e1435bac37..9fcdf139cc5f 100644 --- a/chart2/source/inc/Strings.hrc +++ b/chart2/source/inc/Strings.hrc @@ -70,7 +70,6 @@ #define STR_BAR_GEOMETRY (RID_APP_START + 127) #define STR_NUMBER_OF_LINES (RID_APP_START + 128) -#define STR_TIP_SELECT_RANGE (RID_APP_START + 196) #define STR_3DSCHEME_SIMPLE (RID_APP_START + 231) #define STR_3DSCHEME_REALISTIC (RID_APP_START + 232) diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index 33041fdd6e2c..c90effc9cb40 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -70,7 +70,6 @@ private: protected: SfxModalDialog(Window *pParent, const ResId& ); SfxModalDialog(Window *pParent, const OString& rID, const OUString& rUIXMLDescription); - SfxModalDialog(Window* pParent, sal_uInt32 nUniqueId, WinBits nWinStyle = WB_STDMODAL ); OUString& GetExtraData() { return aExtraData; } sal_uInt32 GetUniqId() const { return nUniqId; } diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx index 99b04f8c35bd..a34c06d128bd 100644 --- a/include/sfx2/tabdlg.hxx +++ b/include/sfx2/tabdlg.hxx @@ -135,10 +135,6 @@ public: SfxTabDialog( SfxViewFrame *pViewFrame, Window* pParent, const OString& rID, const OUString& rUIXMLDescription, const SfxItemSet * = 0, sal_Bool bEditFmt = sal_False ); - - - SfxTabDialog( Window* pParent, const ResId &rResId, const SfxItemSet * = 0, - sal_Bool bEditFmt = sal_False, const OUString *pUserButtonText = 0 ); ~SfxTabDialog(); sal_uInt16 AddTabPage( const OString& rName, // Name of the label for the page in the notebook .ui @@ -168,8 +164,6 @@ public: sal_Bool bItemsOnDemand = sal_False, sal_uInt16 nPos = TAB_APPEND); - void AddTabPage( sal_uInt16 nId, - sal_Bool bItemsOnDemand = sal_False); void AddTabPage( sal_uInt16 nId, const OUString &rRiderText, sal_Bool bItemsOnDemand = sal_False, diff --git a/include/sfx2/templatelocalview.hxx b/include/sfx2/templatelocalview.hxx index 5e065e774005..6234c2908ad2 100644 --- a/include/sfx2/templatelocalview.hxx +++ b/include/sfx2/templatelocalview.hxx @@ -29,7 +29,6 @@ class SFX2_DLLPUBLIC TemplateLocalView : public TemplateAbstractView public: - TemplateLocalView ( Window* pParent, const ResId& rResId, bool bDisableTransientChildren = false ); TemplateLocalView ( Window* pParent ); virtual ~TemplateLocalView (); diff --git a/include/svtools/accessibleruler.hxx b/include/svtools/accessibleruler.hxx index 0f989819a22c..c79246621fd5 100644 --- a/include/svtools/accessibleruler.hxx +++ b/include/svtools/accessibleruler.hxx @@ -179,16 +179,6 @@ public: virtual ::com::sun::star::uno::Sequence SAL_CALL getImplementationId( void ) throw( ::com::sun::star::uno::RuntimeException ); - - - -public: - - /// Sets the name - void setName( const ::rtl::OUString& rName ); - - /// Sets the description - void setDescription( const ::rtl::OUString& rDescr ); private: static ::com::sun::star::uno::Sequence< sal_Int8 > getUniqueId( void ); protected: diff --git a/include/svtools/fmtfield.hxx b/include/svtools/fmtfield.hxx index e70f147677cc..aa7d36af17c9 100644 --- a/include/svtools/fmtfield.hxx +++ b/include/svtools/fmtfield.hxx @@ -95,7 +95,6 @@ protected: public: FormattedField(Window* pParent, WinBits nStyle = 0, SvNumberFormatter* pInitialFormatter = NULL, sal_Int32 nFormatKey = 0); - FormattedField(Window* pParent, const ResId& rResId, SvNumberFormatter* pInitialFormatter = NULL, sal_Int32 nFormatKey = 0); virtual ~FormattedField(); // Min-/Max-Verwaltung @@ -274,12 +273,6 @@ public: ResetConformanceTester(); } - DoubleNumericField(Window* pParent, const ResId& rResId) - :FormattedField(pParent, rResId) - ,m_pNumberValidator( NULL ) - { - ResetConformanceTester(); - } virtual ~DoubleNumericField(); protected: diff --git a/include/svtools/svtabbx.hxx b/include/svtools/svtabbx.hxx index 3424856283bf..8e29e30bfb38 100644 --- a/include/svtools/svtabbx.hxx +++ b/include/svtools/svtabbx.hxx @@ -140,7 +140,6 @@ private: public: SvHeaderTabListBox( Window* pParent, WinBits nBits ); - SvHeaderTabListBox( Window* pParent, const ResId& ); ~SvHeaderTabListBox(); virtual void Paint( const Rectangle& ); diff --git a/include/svx/dialcontrol.hxx b/include/svx/dialcontrol.hxx index 06fecd1bd09b..b8ea3153b29e 100644 --- a/include/svx/dialcontrol.hxx +++ b/include/svx/dialcontrol.hxx @@ -80,7 +80,6 @@ private: class SVX_DLLPUBLIC DialControl : public Control { public: - explicit DialControl( Window* pParent, const ResId& rResId ); explicit DialControl( Window* pParent, WinBits nBits ); virtual ~DialControl(); diff --git a/include/svx/dlgctrl.hxx b/include/svx/dlgctrl.hxx index 882da385e5d0..6d18ea46083b 100644 --- a/include/svx/dlgctrl.hxx +++ b/include/svx/dlgctrl.hxx @@ -99,8 +99,6 @@ protected: Point GetApproxLogPtFromPixPt( const Point& rRoughPixelPoint ) const; public: - SvxRectCtl( Window* pParent, const ResId& rResId, RECT_POINT eRpt = RP_MM, - sal_uInt16 nBorder = 200, sal_uInt16 nCircle = 80, CTL_STYLE eStyle = CS_RECT ); SvxRectCtl( Window* pParent, RECT_POINT eRpt = RP_MM, sal_uInt16 nBorder = 200, sal_uInt16 nCircle = 80, CTL_STYLE eStyle = CS_RECT ); void SetControlSettings(RECT_POINT eRpt = RP_MM, sal_uInt16 nBorder = 200, diff --git a/include/svx/langbox.hxx b/include/svx/langbox.hxx index 64ae54f201ef..f978e7b35eb5 100644 --- a/include/svx/langbox.hxx +++ b/include/svx/langbox.hxx @@ -68,7 +68,6 @@ private: SVX_DLLPRIVATE sal_uInt16 ImplInsertLanguage(LanguageType, sal_uInt16, sal_Int16 ); public: - SvxLanguageBox(Window* pParent, const ResId& rResId, sal_Bool bCheck = sal_False); SvxLanguageBox(Window* pParent, WinBits nBits, sal_Bool bCheck = sal_False); ~SvxLanguageBox(); diff --git a/include/svx/txencbox.hxx b/include/svx/txencbox.hxx index c21f990a87e5..df5778a1e6c6 100644 --- a/include/svx/txencbox.hxx +++ b/include/svx/txencbox.hxx @@ -33,9 +33,8 @@ private: SVX_DLLPRIVATE sal_uInt16 EncodingToPos_Impl( rtl_TextEncoding nEnc ) const; public: - SvxTextEncodingBox( Window* pParent, const ResId& rResId ); - SvxTextEncodingBox( Window* pParent, WinBits nBits ); - ~SvxTextEncodingBox(); + SvxTextEncodingBox( Window* pParent, WinBits nBits ); + ~SvxTextEncodingBox(); /** Fill with all known encodings but exclude those matching one or more given flags as defined in rtl/tencinfo.h diff --git a/include/svx/wrapfield.hxx b/include/svx/wrapfield.hxx index 0f403a10376d..073d2080dfde 100644 --- a/include/svx/wrapfield.hxx +++ b/include/svx/wrapfield.hxx @@ -32,7 +32,6 @@ namespace svx { class SVX_DLLPUBLIC WrapField : public NumericField { public: - explicit WrapField( Window* pParent, const ResId& rResId ); explicit WrapField( Window* pParent, WinBits nBits ); protected: diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk index 397ca2229bc1..32d71da259ce 100644 --- a/sc/Library_sc.mk +++ b/sc/Library_sc.mk @@ -389,7 +389,6 @@ $(eval $(call gb_Library_add_exception_objects,sc,\ sc/source/ui/dbgui/csvsplits \ sc/source/ui/dbgui/csvtablebox \ sc/source/ui/dbgui/dbnamdlg \ - sc/source/ui/dbgui/expftext \ $(if $(filter TRUE,$(MPL_SUBSET)),, \ sc/source/ui/dbgui/fieldwnd) \ sc/source/ui/dbgui/filtdlg \ diff --git a/sc/source/ui/dbgui/expftext.cxx b/sc/source/ui/dbgui/expftext.cxx deleted file mode 100644 index 95017bfd9d1e..000000000000 --- a/sc/source/ui/dbgui/expftext.cxx +++ /dev/null @@ -1,83 +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 . - */ - -#include "expftext.hxx" -#include - -/************************************************************************* -#* Member: ScExpandedFixedText -#*------------------------------------------------------------------------ -#* -#* Klasse: MD_Test -#* -#* Funktion: Konstruktor der Klasse SvxCtrDial -#* -#* Input: Parent- Window, Resource ID -#* -#* Output: --- -#* -#************************************************************************/ - -ScExpandedFixedText::ScExpandedFixedText( Window* pParent, - const ResId& rResId) : - FixedText( pParent, rResId ) -{ - -} - -/************************************************************************* -#* Member: RequestHelp -#*------------------------------------------------------------------------ -#* -#* Klasse: ScExpandedFixedText -#* -#* Funktion: Die Methode wird gerufen, um Hilfe fuer das Fenster -#* anzuzeigen. Zeigt das Fenster einen gekuerzten Text -#* an, so wird selbiger in voller Laenge angezeigt. -#* -#* Input: HelpEvent -#* -#* Output: --- -#* -#************************************************************************/ - -void ScExpandedFixedText::RequestHelp(const HelpEvent& rEvt) -{ - OUString aTxtStr = GetText(); - long nTxtWidth = GetTextWidth(aTxtStr); - if ( ( rEvt.GetMode() & HELPMODE_QUICK ) == HELPMODE_QUICK && - nTxtWidth > GetSizePixel().Width()) - { - Point aShowPoint = OutputToScreenPixel(Point(0,0)); - long nTxtHeight = GetTextHeight(); - - Help::ShowQuickHelp( this, - Rectangle( aShowPoint, Size(nTxtWidth,nTxtHeight) ), aTxtStr, - QUICKHELP_TOP|QUICKHELP_LEFT ); - } - else - { - FixedText::RequestHelp( rEvt ); - } -} - - - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/ui/inc/dbnamdlg.hxx b/sc/source/ui/inc/dbnamdlg.hxx index 2fccd0ee2dce..7ea6ad6d3501 100644 --- a/sc/source/ui/inc/dbnamdlg.hxx +++ b/sc/source/ui/inc/dbnamdlg.hxx @@ -28,7 +28,6 @@ #include "anyrefdg.hxx" #include "dbdata.hxx" -#include "expftext.hxx" class ScViewData; class ScDocument; diff --git a/sc/source/ui/inc/expftext.hxx b/sc/source/ui/inc/expftext.hxx deleted file mode 100644 index 09ba390e9ccc..000000000000 --- a/sc/source/ui/inc/expftext.hxx +++ /dev/null @@ -1,39 +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 _SC_EXPFTEXT_HXX -#define _SC_EXPFTEXT_HXX - -#include -#include "scdllapi.h" - -class SC_DLLPUBLIC ScExpandedFixedText: public FixedText -{ - protected: - - void RequestHelp( const HelpEvent& rHEvt ); - - public: - ScExpandedFixedText( Window* pWindow, const ResId& rResId); -}; - - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sc/source/ui/inc/instbdlg.hxx b/sc/source/ui/inc/instbdlg.hxx index fd74a90c69cd..754b03b304d2 100644 --- a/sc/source/ui/inc/instbdlg.hxx +++ b/sc/source/ui/inc/instbdlg.hxx @@ -31,7 +31,6 @@ #include #include -#include "expftext.hxx" class ScViewData; class ScDocument; diff --git a/sc/source/ui/inc/simpref.hxx b/sc/source/ui/inc/simpref.hxx index 71ff5bcf5356..c61d1d25b39f 100644 --- a/sc/source/ui/inc/simpref.hxx +++ b/sc/source/ui/inc/simpref.hxx @@ -29,7 +29,6 @@ #include #include "anyrefdg.hxx" #include "dbdata.hxx" -#include "expftext.hxx" class ScViewData; class ScDocument; diff --git a/sc/source/ui/inc/xmlsourcedlg.hxx b/sc/source/ui/inc/xmlsourcedlg.hxx index 8669405032d9..e71b9df20fd0 100644 --- a/sc/source/ui/inc/xmlsourcedlg.hxx +++ b/sc/source/ui/inc/xmlsourcedlg.hxx @@ -15,7 +15,6 @@ #include #include "svtools/treelistbox.hxx" -#include "expftext.hxx" #include "anyrefdg.hxx" #include "orcusxml.hxx" diff --git a/sc/source/ui/sidebar/CellLineStyleValueSet.cxx b/sc/source/ui/sidebar/CellLineStyleValueSet.cxx index fbc1ff73480e..6cfbd0c43bd5 100644 --- a/sc/source/ui/sidebar/CellLineStyleValueSet.cxx +++ b/sc/source/ui/sidebar/CellLineStyleValueSet.cxx @@ -59,11 +59,6 @@ void CellLineStyleValueSet::SetSelItem(sal_uInt16 nSel) } } -void CellLineStyleValueSet::SetImage(Image img) -{ - imgCus = img; -} - void CellLineStyleValueSet::UserDraw( const UserDrawEvent& rUDEvt ) { Rectangle aRect = rUDEvt.GetRect(); diff --git a/sc/source/ui/sidebar/CellLineStyleValueSet.hxx b/sc/source/ui/sidebar/CellLineStyleValueSet.hxx index 1f6ff5e0da07..971688c7bff8 100644 --- a/sc/source/ui/sidebar/CellLineStyleValueSet.hxx +++ b/sc/source/ui/sidebar/CellLineStyleValueSet.hxx @@ -32,14 +32,12 @@ private: VirtualDevice* pVDev; sal_uInt16 nSelItem; OUString maStrUnit[CELL_LINE_STYLE_ENTRIES]; - Image imgCus; public: CellLineStyleValueSet( Window* pParent, const ResId& rResId); virtual ~CellLineStyleValueSet(); void SetUnit(const OUString* str); void SetSelItem(sal_uInt16 nSel); - void SetImage(Image img); virtual void UserDraw( const UserDrawEvent& rUDEvt ); }; diff --git a/sd/source/ui/sidebar/LayoutMenu.cxx b/sd/source/ui/sidebar/LayoutMenu.cxx index 62289b76d6af..1733a1051626 100644 --- a/sd/source/ui/sidebar/LayoutMenu.cxx +++ b/sd/source/ui/sidebar/LayoutMenu.cxx @@ -251,48 +251,6 @@ AutoLayout LayoutMenu::GetSelectedAutoLayout (void) return aResult; } - - - -/** The preferred size depends on the preferred number of columns, the - number of items, and the size of the items. -*/ -Size LayoutMenu::GetPreferredSize (void) -{ - Size aItemSize = CalcItemSizePixel (Size()); - Size aPreferredWindowSize = CalcWindowSizePixel ( - aItemSize, - (sal_uInt16)mnPreferredColumnCount, - (sal_uInt16)CalculateRowCount (aItemSize,mnPreferredColumnCount)); - return aPreferredWindowSize; -} - - - - -sal_Int32 LayoutMenu::GetPreferredWidth (sal_Int32 nHeight) -{ - sal_Int32 nPreferredWidth = 100; - if (GetItemCount() > 0) - { - Image aImage = GetItemImage(GetItemId(0)); - Size aItemSize = CalcItemSizePixel (aImage.GetSizePixel()); - if (nHeight>0 && aItemSize.Height()>0) - { - int nRowCount = nHeight / aItemSize.Height(); - if (nRowCount <= 0) - nRowCount = 1; - int nColumnCount = (GetItemCount() + nRowCount-1) / nRowCount; - nPreferredWidth = nColumnCount * aItemSize.Width(); - } - } - - return nPreferredWidth; -} - - - - ui::LayoutSize LayoutMenu::GetHeightForWidth (const sal_Int32 nWidth) { sal_Int32 nPreferredHeight = 200; @@ -319,21 +277,6 @@ ui::LayoutSize LayoutMenu::GetHeightForWidth (const sal_Int32 nWidth) -sal_Int32 LayoutMenu::GetMinimumWidth (void) -{ - sal_Int32 nMinimumWidth = 0; - if (GetItemCount()>0) - { - Image aImage = GetItemImage(GetItemId(0)); - Size aItemSize = CalcItemSizePixel (aImage.GetSizePixel()); - nMinimumWidth = aItemSize.Width(); - } - return nMinimumWidth; -} - - - - void LayoutMenu::Paint (const Rectangle& rRect) { if (mbSelectionUpdatePending) diff --git a/sd/source/ui/sidebar/LayoutMenu.hxx b/sd/source/ui/sidebar/LayoutMenu.hxx index a858101ba692..88cfa527f2ab 100644 --- a/sd/source/ui/sidebar/LayoutMenu.hxx +++ b/sd/source/ui/sidebar/LayoutMenu.hxx @@ -85,10 +85,6 @@ public: */ AutoLayout GetSelectedAutoLayout (void); - Size GetPreferredSize (void); - sal_Int32 GetPreferredWidth (sal_Int32 nHeight); - sal_Int32 GetMinimumWidth (void); - // From ILayoutableWindow virtual css::ui::LayoutSize GetHeightForWidth (const sal_Int32 nWidth); diff --git a/sfx2/source/control/templatelocalview.cxx b/sfx2/source/control/templatelocalview.cxx index 35890f71886e..9a916e96b893 100644 --- a/sfx2/source/control/templatelocalview.cxx +++ b/sfx2/source/control/templatelocalview.cxx @@ -32,12 +32,6 @@ using namespace ::com::sun::star::frame; static void lcl_updateThumbnails (TemplateContainerItem *pItem); -TemplateLocalView::TemplateLocalView ( Window* pParent, const ResId& rResId, bool bDisableTransientChildren) - : TemplateAbstractView(pParent,rResId,bDisableTransientChildren), - mpDocTemplates(new SfxDocumentTemplates) -{ -} - TemplateLocalView::TemplateLocalView ( Window* pParent) : TemplateAbstractView(pParent), mpDocTemplates(new SfxDocumentTemplates) diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index eedd2d963f54..609f81af92b6 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -164,26 +164,6 @@ SfxModalDialog::SfxModalDialog(Window *pParent, const OString& rID, const OUStri // ----------------------------------------------------------------------- -SfxModalDialog::SfxModalDialog(Window* pParent, - sal_uInt32 nUniqueId, - WinBits nWinStyle) : -/* [Description] - - Constructor of the general base class for modal Dialoge; - The ID for the ini-file wird explicilty handed over. - The saved position from there is set. -*/ - - ModalDialog(pParent, nWinStyle), - nUniqId(nUniqueId), - pInputSet(0), - pOutputSet(0) -{ - init(); -} - -// ----------------------------------------------------------------------- - SfxModalDialog::~SfxModalDialog() /* [Description] diff --git a/sfx2/source/dialog/tabdlg.cxx b/sfx2/source/dialog/tabdlg.cxx index f0ac157d2eed..d7e90524e32b 100644 --- a/sfx2/source/dialog/tabdlg.cxx +++ b/sfx2/source/dialog/tabdlg.cxx @@ -388,16 +388,6 @@ SfxTabDialog* SfxTabPage::GetTabDialog() const return dynamic_cast(GetParentDialog()); } -#define INI_LIST(ItemSetPtr) \ - pSet(ItemSetPtr) \ - , pOutSet(0) \ - , pRanges(0) \ - , nResId(rResId.GetId()) \ - , nAppPageId(USHRT_MAX) \ - , bItemsReset(sal_False) \ - , bFmt(bEditFmt)\ - , pExampleSet(0) - // ----------------------------------------------------------------------- SfxTabDialog::SfxTabDialog @@ -433,31 +423,6 @@ SfxTabDialog::SfxTabDialog Constructor, temporary without Frame */ -( - Window* pParent, // Parent Window - const ResId& rResId, // ResourceId - const SfxItemSet* pItemSet, // Itemset with the data; - // can be NULL, when Pages are onDemand - sal_Bool bEditFmt, // Flag: templates are processed - // when yes -> additional Button for standard - const OUString* pUserButtonText // Text for UserButton; - // if != 0, the UserButton is created -) - : TabDialog(pParent, rResId) - , pFrame(0) - , INI_LIST(pItemSet) -{ - Init_Impl( bFmt, pUserButtonText, &rResId ); - DBG_WARNING( "Please use the Construtor with the ViewFrame" ); -} - -SfxTabDialog::SfxTabDialog - -/* [Description] - - Constructor, temporary without Frame -*/ - ( Window* pParent, // Parent Window const OString& rID, const OUString& rUIXMLDescription, //Dialog Name, Dialog .ui path @@ -747,11 +712,6 @@ void SfxTabDialog::Start_Impl() ActivatePageHdl( m_pTabCtrl ); } -void SfxTabDialog::AddTabPage( sal_uInt16 nId, sal_Bool bItemsOnDemand ) -{ - AddTabPage( nId, 0, 0, bItemsOnDemand ); -} - void SfxTabDialog::AddTabPage( sal_uInt16 nId, const OUString &rRiderText, sal_Bool bItemsOnDemand, sal_uInt16 nPos ) { AddTabPage( nId, rRiderText, 0, 0, bItemsOnDemand, nPos ); diff --git a/svtools/source/contnr/svtabbx.cxx b/svtools/source/contnr/svtabbx.cxx index adb759c8bd4b..feee0a46975f 100644 --- a/svtools/source/contnr/svtabbx.cxx +++ b/svtools/source/contnr/svtabbx.cxx @@ -528,18 +528,6 @@ SvHeaderTabListBox::SvHeaderTabListBox( Window* pParent, WinBits nWinStyle ) : // ----------------------------------------------------------------------- -SvHeaderTabListBox::SvHeaderTabListBox( Window* pParent, const ResId& rResId ) : - - SvTabListBox( pParent, rResId ), - - m_bFirstPaint ( sal_True ), - m_pImpl ( new ::svt::SvHeaderTabListBoxImpl ), - m_pAccessible ( NULL ) -{ -} - -// ----------------------------------------------------------------------- - SvHeaderTabListBox::~SvHeaderTabListBox() { delete m_pImpl; diff --git a/svtools/source/control/accessibleruler.cxx b/svtools/source/control/accessibleruler.cxx index 02e4f5329613..6a42ae762ef4 100644 --- a/svtools/source/control/accessibleruler.cxx +++ b/svtools/source/control/accessibleruler.cxx @@ -385,22 +385,6 @@ Sequence< sal_Int8 > SAL_CALL SvtRulerAccessible::getImplementationId( void ) th return getUniqueId(); } -//===== internals ======================================================== -void SvtRulerAccessible::setName( const OUString& rName ) -{ - msName = rName; - -} - -void SvtRulerAccessible::setDescription( const OUString& rDescr ) -{ - - msDescription = rDescr; - -} - - - void SAL_CALL SvtRulerAccessible::disposing() { if( !rBHelper.bDisposed ) diff --git a/svtools/source/control/fmtfield.cxx b/svtools/source/control/fmtfield.cxx index 95587f1dcf23..9f04b9fa9e6c 100644 --- a/svtools/source/control/fmtfield.cxx +++ b/svtools/source/control/fmtfield.cxx @@ -332,18 +332,6 @@ FormattedField::FormattedField(Window* pParent, WinBits nStyle, SvNumberFormatte } } -FormattedField::FormattedField(Window* pParent, const ResId& rResId, SvNumberFormatter* pInitialFormatter, sal_Int32 nFormatKey) - :SpinField(pParent, rResId) - ,INIT_MEMBERS() -{ - DBG_CTOR(FormattedField, NULL); - - if (pInitialFormatter) - { - m_pFormatter = pInitialFormatter; - m_nFormatKey = nFormatKey; - } -} extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeFormattedField(Window *pParent, VclBuilder::stringmap &) { WinBits nWinBits = WB_BORDER; diff --git a/svx/source/dialog/dialcontrol.cxx b/svx/source/dialog/dialcontrol.cxx index 69400e1a4a13..632a873fb126 100644 --- a/svx/source/dialog/dialcontrol.cxx +++ b/svx/source/dialog/dialcontrol.cxx @@ -265,13 +265,6 @@ void DialControl::DialControl_Impl::SetSize( const Size& rWinSize ) // ============================================================================ -DialControl::DialControl( Window* pParent, const ResId& rResId ) : - Control( pParent, rResId ), - mpImpl( new DialControl_Impl( *this ) ) -{ - Init( GetOutputSizePixel() ); -} - DialControl::DialControl( Window* pParent, WinBits nBits ) : Control( pParent, nBits ), mpImpl( new DialControl_Impl( *this ) ) diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx index 11ecdca74cbf..78c7bb2d83da 100644 --- a/svx/source/dialog/dlgctrl.cxx +++ b/svx/source/dialog/dlgctrl.cxx @@ -66,24 +66,6 @@ Bitmap& SvxRectCtl::GetRectBitmap( void ) return *pBitmap; } -SvxRectCtl::SvxRectCtl( Window* pParent, const ResId& rResId, RECT_POINT eRpt, - sal_uInt16 nBorder, sal_uInt16 nCircle, CTL_STYLE eStyle ) : - - Control( pParent, rResId ), - - pAccContext ( NULL ), - nBorderWidth( nBorder ), - nRadius ( nCircle), - eDefRP ( eRpt ), - eCS ( eStyle ), - pBitmap ( NULL ), - m_nState ( 0 ), - mbCompleteDisable(sal_False) -{ - SetMapMode( MAP_100TH_MM ); - Resize_Impl(); -} - SvxRectCtl::SvxRectCtl(Window* pParent, RECT_POINT eRpt, sal_uInt16 nBorder, sal_uInt16 nCircle, CTL_STYLE eStyle) : Control(pParent, WB_BORDER | WB_TABSTOP) diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx index 501a2fe615d2..bd024f4a9585 100644 --- a/svx/source/dialog/langbox.cxx +++ b/svx/source/dialog/langbox.cxx @@ -119,15 +119,6 @@ sal_uInt16 TypeToPos_Impl( LanguageType eType, const ListBox& rLb ) return nPos; } -//------------------------------------------------------------------------ -SvxLanguageBox::SvxLanguageBox( Window* pParent, const ResId& rResId, sal_Bool bCheck ) : - ListBox( pParent, rResId ), - m_pSpellUsedLang( NULL ), - m_bWithCheckmark( bCheck ) -{ - Init(); -} - SvxLanguageBox::SvxLanguageBox( Window* pParent, WinBits nBits, sal_Bool bCheck ) : ListBox( pParent, nBits ) , m_pSpellUsedLang( NULL ) diff --git a/svx/source/dialog/txencbox.cxx b/svx/source/dialog/txencbox.cxx index 8571bdaf6f12..33d7ee435ff5 100644 --- a/svx/source/dialog/txencbox.cxx +++ b/svx/source/dialog/txencbox.cxx @@ -35,13 +35,6 @@ // class SvxTextEncodingBox //======================================================================== -SvxTextEncodingBox::SvxTextEncodingBox( Window* pParent, const ResId& rResId ) - : - ListBox( pParent, rResId ) -{ - m_pEncTable = new SvxTextEncodingTable; -} - SvxTextEncodingBox::SvxTextEncodingBox( Window* pParent, WinBits nBits ) : ListBox( pParent, nBits ) { diff --git a/svx/source/dialog/wrapfield.cxx b/svx/source/dialog/wrapfield.cxx index 76302d801ca3..46464997cf55 100644 --- a/svx/source/dialog/wrapfield.cxx +++ b/svx/source/dialog/wrapfield.cxx @@ -22,11 +22,6 @@ namespace svx { -WrapField::WrapField( Window* pParent, const ResId& rResId ) : - NumericField( pParent, rResId ) -{ -} - WrapField::WrapField( Window* pParent, WinBits nBits ) : NumericField( pParent, nBits ) { diff --git a/sw/inc/docsh.hxx b/sw/inc/docsh.hxx index 20dfcea30f33..5f919cf83f3a 100644 --- a/sw/inc/docsh.hxx +++ b/sw/inc/docsh.hxx @@ -289,9 +289,6 @@ public: virtual void setDocAccTitle( const OUString& rTitle ); virtual const OUString getDocAccTitle() const; - void setDocReadOnly( bool bReadOnly); - bool getDocReadOnly() const; - ::com::sun::star::uno::Reference< ::com::sun::star::frame::XController > GetController(); diff --git a/sw/source/core/access/accpara.cxx b/sw/source/core/access/accpara.cxx index 6935f43f6911..561e396a1edd 100644 --- a/sw/source/core/access/accpara.cxx +++ b/sw/source/core/access/accpara.cxx @@ -781,44 +781,6 @@ sal_Bool SwAccessibleParagraph::GetWordBoundary( // (DICTIONARY_WORD includes punctuation, ANY_WORD doesn't.) const sal_uInt16 nWordType = i18n::WordType::ANY_WORD; -/* - // get word boundary, as the Break-Iterator sees fit. - sal_Unicode SpaceChar(' '); - if (rText.getCodePointAt(nPos) == SpaceChar) - { - int nStartPos = nPos; - int nEndPos = nPos+1; - while (nStartPos >= 0 && rText.getCodePointAt(nStartPos) == SpaceChar) - --nStartPos; - while (nEndPos < rText.getLength() && rText.getCodePointAt(nEndPos) == SpaceChar) - ++nEndPos; - //Get the previous word boundary + the followed space characters - if (nStartPos >= 0) - { - rBound = pBreakIt->xBreak->getWordBoundary( rText, nStartPos, aLocale, nWordType, sal_True ); - rBound.endPos += (nEndPos-nStartPos - 1); - } - //When the frontal characters are whitespace, return the all space characters directly. - else - { - rBound.startPos = 0; - rBound.endPos = nEndPos; - } - } - // add the " " into the word boundry - else - { - rBound = pBreakIt->xBreak->getWordBoundary(rText, nPos, aLocale, nWordType, sal_True ); - sal_Int32 nEndPos = rBound.endPos, nLength = rText.getLength(); - while ( nEndPos < nLength && rText.getCodePointAt(nEndPos) == SpaceChar ) - nEndPos++; - rBound.endPos = nEndPos; - } - tabCharInWord( nPos, rBound); - if( GetPortionData().FillBoundaryIFDateField( rBound, rBound.startPos) ) - return sal_True; - return sal_True; // MT: So why do we need the return TRUE above??? -*/ // get word boundary, as the Break-Iterator sees fit. rBound = g_pBreakIt->GetBreakIter()->getWordBoundary( rText, nPos, aLocale, nWordType, sal_True ); @@ -4146,26 +4108,4 @@ uno::Any SAL_CALL SwAccessibleParagraph::getExtendedAttributes() return Ret; } -//Tab will be return when call WORDTYPE -sal_Bool SwAccessibleParagraph::tabCharInWord( sal_Int32 nIndex, i18n::Boundary& aBound) -{ - sal_Bool bFind = sal_False; - if( aBound.startPos != nIndex) - { - OUString tabStr; - if(aBound.startPos>nIndex) - tabStr = GetString().copy(nIndex,(aBound.startPos - nIndex) ); - - sal_Unicode tabChar('\t'); - sal_Int32 tabIndex = tabStr.indexOf(tabChar); - if( tabIndex > -1 ) - { - aBound.startPos = nIndex + tabIndex ; - aBound.endPos = aBound.startPos + 1; - bFind = sal_True; - } - } - return bFind; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/core/access/accpara.hxx b/sw/source/core/access/accpara.hxx index a8bea061537a..1dbfa32afc62 100644 --- a/sw/source/core/access/accpara.hxx +++ b/sw/source/core/access/accpara.hxx @@ -439,7 +439,6 @@ public: sal_Int32 GetRealHeadingLevel(); // XAccessibleComponent sal_Bool m_bLastHasSelection; - sal_Bool tabCharInWord(sal_Int32 nIndex, com::sun::star::i18n::Boundary& aBound); // #i89175# // XAccessibleMultiLineText diff --git a/sw/source/core/text/inftxt.cxx b/sw/source/core/text/inftxt.cxx index a65a1ebd46dc..0cc5cff8d551 100644 --- a/sw/source/core/text/inftxt.cxx +++ b/sw/source/core/text/inftxt.cxx @@ -1796,56 +1796,6 @@ SwFontSave::~SwFontSave() } } -SwDefFontSave::SwDefFontSave( const SwTxtSizeInfo &rInf ) - : pFnt( ((SwTxtSizeInfo&)rInf).GetFont() ) -{ - const bool bTmpAlter = pFnt->GetFixKerning() || - ( RTL_TEXTENCODING_SYMBOL == pFnt->GetCharSet(pFnt->GetActual()) ) - ; - - const bool bFamily = bTmpAlter && - pFnt->GetName( pFnt->GetActual() ) != numfunc::GetDefBulletFontname(); - const bool bRotation = pFnt->GetOrientation() && - ! rInf.GetTxtFrm()->IsVertical(); - - if( bFamily || bRotation ) - { - pNewFnt = new SwFont( *pFnt ); - - if ( bFamily ) - { - pNewFnt->SetFamily( FAMILY_DONTKNOW, pFnt->GetActual() ); - pNewFnt->SetName( numfunc::GetDefBulletFontname(), pFnt->GetActual() ); - pNewFnt->SetStyleName( aEmptyOUStr, pFnt->GetActual() ); - pNewFnt->SetCharSet( RTL_TEXTENCODING_SYMBOL, pFnt->GetActual() ); - pNewFnt->SetFixKerning( 0 ); - } - - if ( bRotation ) - pNewFnt->SetVertical( 0, rInf.GetTxtFrm()->IsVertical() ); - - pInf = &((SwTxtSizeInfo&)rInf); - pNewFnt->Invalidate(); - pInf->SetFont( pNewFnt ); - } - else - { - pFnt = 0; - pNewFnt = 0; - } -} - -SwDefFontSave::~SwDefFontSave() -{ - if( pFnt ) - { - delete pNewFnt; - // Reset SwFont - pFnt->Invalidate(); - pInf->SetFont( pFnt ); - } -} - bool SwTxtFormatInfo::ChgHyph( const bool bNew ) { const bool bOld = bAutoHyph; @@ -1860,5 +1810,4 @@ bool SwTxtFormatInfo::ChgHyph( const bool bNew ) return bOld; } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sw/source/core/text/inftxt.hxx b/sw/source/core/text/inftxt.hxx index dd77975eda07..145dde559a70 100644 --- a/sw/source/core/text/inftxt.hxx +++ b/sw/source/core/text/inftxt.hxx @@ -803,20 +803,6 @@ public: ~SwFontSave(); }; -/************************************************************************* - * class SwDefFontSave - *************************************************************************/ - -class SwDefFontSave -{ - SwTxtSizeInfo *pInf; - SwFont *pFnt; - SwFont *pNewFnt; -public: - SwDefFontSave( const SwTxtSizeInfo &rInf ); - ~SwDefFontSave(); -}; - /************************************************************************* * Inline implementations of SwTxtSizeInfo *************************************************************************/ diff --git a/sw/source/ui/app/docsh.cxx b/sw/source/ui/app/docsh.cxx index 791287d1c9e0..1f60704b0054 100644 --- a/sw/source/ui/app/docsh.cxx +++ b/sw/source/ui/app/docsh.cxx @@ -1224,24 +1224,6 @@ const OUString SwDocShell::getDocAccTitle() const return sRet; } -void SwDocShell::setDocReadOnly(bool bReadOnly) -{ - if (pDoc) - { - pDoc->setDocReadOnly( bReadOnly ); - } -} - -bool SwDocShell::getDocReadOnly() const -{ - if (pDoc) - { - return pDoc->getDocReadOnly(); - } - - return false; -} - static const char* s_EventNames[] = { "OnPageCountChange", diff --git a/unusedcode.easy b/unusedcode.easy index db50bbf40794..72b0e899a813 100644 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -1,31 +1,73 @@ -(anonymous namespace)::Coverage::test_start(rtl::OUString) -(anonymous namespace)::StringToken::toInt32(int&) const -(anonymous namespace)::StringTokenizer::StringTokenizer(rtl::OUString const&, unsigned short) -(anonymous namespace)::StringTokenizer::getNextToken() -(anonymous namespace)::VBATest::testMiscOLEStuff() +AddressWalker::pop() +BackingWindow::LinkStubOpenTemplateHdl(void*, void*) +BigInt::BigInt(unsigned int) +BigInt::GetString() const +CalcUnoApiTest::CalcUnoApiTest(rtl::OUString const&) +Chart2ImportTest::testODPChartSeries() +Chart2ImportTest::testPPTChartSeries() +Chart2ImportTest::testPPTXChartSeries() CodeCompleteDataCache::GetVars() const CodeCompleteDataCache::SetVars(boost::unordered::unordered_map, std::allocator > >, rtl::OUStringHash, std::equal_to, std::allocator, std::allocator > > > > > const&) CodeCompleteDataCache::print() const +ComboBox::GetMRUCount() const +ConfigurationAccess::getPath(rtl::OUString const&) CuiAboutConfigTabPage::LinkStubHeaderSelect_Impl(void*, void*) +DocxSdrExport::setFrameBtLr(bool) +EditEngine::IsIdleFormatterActive() const +EditSelection::IsInvalid() const EditTextObjectImpl::SetParaAttribs(int, SfxItemSet const&) +FileStream::FileStream() +FileStream::close() +FileStream::createTempFile(rtl::OString const&) +FileStream::write(void const*, unsigned long) FontSelectPatternAttributes::FontSelectPatternAttributes(PhysicalFontFace const&, Size const&, float, int, bool) +FontSizeBox::GetValue(unsigned short, FieldUnit) const +GDriveDocument::GDriveDocument(GDriveSession*) +GDriveFolder::GDriveFolder(GDriveSession*) +GDriveProperty::GDriveProperty() +GDriveSession::GDriveSession() +GraphicHelper::mergeBitmaps_Impl(BitmapEx const&, BitmapEx const&, Rectangle const&, BitmapEx&) +ImpEditEngine::SetUpdateModeForAcc(bool) ImplRegionBand::IsInside(long, long) ImplRegionBand::IsOver(long, long) +ImportExcel::GetLastFormula(short) +Json::Json(std::map, std::allocator >, Json, std::less, std::allocator > >, std::allocator, std::allocator > const, Json> > > const&) +Json::Json(std::map, std::allocator >, boost::shared_ptr, std::less, std::allocator > >, std::allocator, std::allocator > const, boost::shared_ptr > > > const&) +Json::swap(Json&) LanguageTag::LanguageTag() LanguageTag::convertLangToBcp47() LanguageTag::convertLocaleToBcp47() LanguageTag::getRegion() const LanguageTag::reset(_rtl_Locale const&) +ListBox::GetMRUCount() const +Menu::GetHighlightItem() const +Menu::GetItemAccKeyStrFromPos(unsigned short) const +Menu::IsTemporaryItemFromPos(unsigned short) const +MenuBar::AddMenuBarButton(Image const&, Link const&, rtl::OUString const&, unsigned short) +MenuBar::GetMenuBarButtonRectPixel(unsigned short) +MenuBar::RemoveMenuBarButton(unsigned short) +MenuBar::SetMenuBarButtonHighlightHdl(unsigned short, Link const&) +OAuth2Handler::OAuth2Handler() +OAuth2Handler::getAccessToken() +OFileWriter::flush() const +OFileWriter::writeDefaultParameter(char const*, rtl::OUString const&) const +OFileWriter::writeParameter(char const*, char const*, rtl::OUString const&) const +Options::Options() +Options::getInputFiles() +Options::getOption(rtl::OString const&) const +Options::getProgramName() const +Options::isValid(rtl::OString const&) const OutputDevice::GetCanvas() const OutputDevice::LogicToLogic(basegfx::B2DPolyPolygon const&, MapMode const&, MapMode const&) OutputDevice::LogicToPixel(Region const&, MapMode const&) const OutputDevice::LogicToPixel(basegfx::B2DPolygon const&) const OutputDevice::LogicToPixel(basegfx::B2DPolygon const&, MapMode const&) const OutputDevice::PixelToLogic(Region const&, MapMode const&) const -RawBitmap::RawBitmap() -RawBitmap::~RawBitmap() +PanelLayout::dispatch(rtl::OUString const&, com::sun::star::uno::Sequence const&) RecentDocsView::SetThumbnailSize(long) +Resource::TestRes() Ruler::GetPageWidth() const +SalDisplay::PrintInfo() const SalGraphics::drawTransformedBitmap(basegfx::B2DPoint const&, basegfx::B2DPoint const&, basegfx::B2DPoint const&, SalBitmap const&, SalBitmap const*) ScCellIterator::getValue() ScCellIterator::hasNumeric() const @@ -33,41 +75,58 @@ ScCellValue::ScCellValue(EditTextObject const&) ScCellValue::ScCellValue(ScFormulaCell const&) ScCellValue::hasNumeric() const ScCellValue::hasString() const -ScCellValue::set(EditTextObject const&) ScCellValue::set(ScFormulaCell const&) ScColorScaleEntry::UpdateMoveTab(short, short, short) +ScColumn::DeleteCellNote(int) ScColumn::MoveListeners(SvtBroadcaster&, int) ScColumn::SetRawString(sc::ColumnBlockPosition&, int, rtl::OUString const&, bool) ScComplexRefData::IsDeleted() const ScDBQueryDataIterator::DataAccessInternal::setPos(unsigned long) ScDPFilteredCache::SingleFilter::getMatchValue() const +ScDocument::CountNotes() const +ScDocument::CreateFormatTable() const ScDocument::GetCellCount(short, short) const ScDocument::GetFormulaTokens(ScAddress const&) const ScDocument::IsEmptyData(short, short) const -ScDocumentImport::setFormulaCell(ScAddress const&, ScTokenArray const&) +ScDocument::RebuildFormulaGroups() ScEditUtil::GetSpaceDelimitedString(EditTextObject const&) ScExtIButton::GetSelected() const +ScFlatBoolRowSegments::getValue(int) +ScFormulaCell::GetErrorOrString(unsigned short&, svl::SharedString&) ScFormulaCell::HasColRowName() const ScGlobal::GetStandardFormat(double, SvNumberFormatter&, unsigned long, short) +ScGridWindow::HasScenarioRange(unsigned short, int, ScRange&) ScMyNotEmptyCellsIterator::GetCell() const ScRangeStringConverter::GetRangeListFromString(com::sun::star::uno::Sequence&, rtl::OUString const&, ScDocument const*, formula::FormulaGrammar::AddressConvention, unsigned short, unsigned short) ScRefCellValue::commit(ScColumn&, int) const +ScRefreshTimer::StartRefreshTimer() ScSimpleRefDlgWrapper::GetRefString() +ScTabView::GetParentOrChild(unsigned short) +ScTabViewShell::GetForms() const +ScTable::GetNote(short, int) ScTable::SetRawString(short, int, rtl::OUString const&) ScVbaFormat::getAddIndent() ScVbaFormat::setAddIndent(com::sun::star::uno::Any const&) -ServerFont::GetGlyphBitmap1(int, RawBitmap&) const -ServerFont::GetGlyphBitmap8(int, RawBitmap&) const +SdrItemBrowser::ForceParent() +SdrItemBrowser::SdrItemBrowser(SdrView&) +SfxAcceleratorConfigPage::Create(Window*, SfxItemSet const&) SfxAppMenuControl_Impl::RegisterControl(unsigned short, SfxModule*) -SfxGrabBagItem::SetGrabBag(std::__debug::map, std::allocator > > const&) +SfxBindings::GetDispatchProvider_Impl() const +SfxBindings::GetSlot(unsigned short) +SfxBindings::GetSystemWindow() const +SfxDispatcher::IsOnTop(SfxShell const&) +SfxGrabBagItem::SetGrabBag(std::map, std::allocator > > const&) +SfxItemPool::GetMasterPool() const SfxTemplatePanelControl::SetParagraphFamily() +SimpleErrorHandler::SimpleErrorHandler() SmFontPickList::Contains(Font const&) const SmParser::Insert(rtl::OUString const&, int) -String::String(char) +SotFactory::Find(SvGlobalName const&) +SvStream::WriteUCharPtr(unsigned char const*) +SvTreeListBox::SearchEntryText(SvTreeListEntry*) const +SvViewDataEntry::SetObjectSelected(bool) SvdProgressInfo::ReportError() -SvpSalInstance::PostEvent(SalFrame const*, void*, unsigned short) SvpSalInstance::PostedEventsInQueue() -SvpSalInstance::deregisterFrame(SalFrame*) SvtAccessibilityOptions::GetColorValueSetColumnCount() const SvtAccessibilityOptions::GetEdgeBlending() const SvtAccessibilityOptions::GetListBoxMaximumLineCount() const @@ -76,48 +135,179 @@ SvtAccessibilityOptions::SetColorValueSetColumnCount(short) SvtAccessibilityOptions::SetEdgeBlending(short) SvtAccessibilityOptions::SetListBoxMaximumLineCount(short) SvtAccessibilityOptions::SetPreviewUsesCheckeredBackground(unsigned char) +SvtIconChoiceCtrl::SetEntryTextMode(SvxIconChoiceCtrlTextMode, SvxIconChoiceCtrlEntry*) +SvtListener::IsListening(SvtBroadcaster&) const +SvxDistributePage::GetRanges() SvxNumRule::Create(SvStream&) SvxNumberFormat::Create(SvStream&) +SvxNumberFormatShell::IsAdded_Impl(unsigned long) +SvxPixelCtlAccessible::Invalidate() +SvxPixelCtlAccessible::ThrowExceptionIfNotAlive() +SvxPixelCtlAccessible::ensureIsValidAddress(int, int) +SvxPixelCtlAccessible::ensureIsValidIndex(int) +SvxRectCtlAccessibleContext::FireAccessibleEvent(short, com::sun::star::uno::Any const&, com::sun::star::uno::Any const&) +SwAccessibleField::SwAccessibleField(SwField*, SwAccessibleParagraph*, short) +SwAccessibleParagraph::GetTOCLevel() +SwAccessiblePortionData::GetAttrFldType(int) +SwAccessibleTable::ClearSelectionCellCache() +SwAccessibleTable::SetTableData(SwAccessibleTableData_Impl*) +SwCntntFrm::DelFrms(SwCntntNode const&) +SwFrmFmt::SetCaptionFmt(SwFrmFmt*) +SwInputFieldList::RemoveUnselectedFlds() +SwPostItField::GetByName(SwDoc*, rtl::OUString const&) +SwViewImp::FireColumnChangeEvent(unsigned short, unsigned short) +SwViewImp::FirePageChangeEvent(unsigned short, unsigned short) +SwViewImp::FireSectionChangeEvent(unsigned short, unsigned short) +TemplateLocalView::HasUnfilteredItems(FILTER_APPLICATION) +TextDoc::IsValidPaM(TextPaM const&) TextEngine::GetLeftMargin() const ThumbnailView::DeselectItem(unsigned short) ThumbnailView::GetItemText(unsigned short) const ThumbnailView::SetColor(Color const&) +ToolBox::GetItemExpand(unsigned short) const +TypeManager::TypeManager() +TypeManager::decompose(rtl::OUString const&, bool, rtl::OUString*, int*, std::vector >*, rtl::Reference*) const +TypeManager::foundAtPrimaryProvider(rtl::OUString const&) const +TypeManager::loadProvider(rtl::OUString const&, bool) +UnoApiTest::closeDocument(com::sun::star::uno::Reference) +VCLXAccessibleHeaderBarItem::LinkStubWindowEventListener(void*, void*) +ValueSet::ImplGetVisibleItem(unsigned short) +VclMultiLineEdit::IsRightToLeft() const VclMultiLineEdit::SetTextSelectable(bool) +accessibility::AccessibleParaManager::Release(int) +accessibility::AccessibleShape::AccessibleShape(com::sun::star::uno::Reference const&, com::sun::star::uno::Reference const&, accessibility::AccessibleShapeTreeInfo const&, int) +accessibility::Document::justifySelection(TextPaM&, TextPaM&) +accessibility::Document::notifySelectionChange(int, int) +accessibility::GetCurrentEditorWnd() +apitest::CellProperties::testRotateReference() +apitest::CellProperties::testVertJustify() +apitest::DataPilotField::testAutoShowInfo() +apitest::DataPilotField::testIsGroupField() +apitest::DataPilotField::testLayoutInfo() +apitest::DataPilotField::testReference() +apitest::DataPilotField::testSortInfo() +apitest::XCellRangeData::testGetDataArray() +apitest::XCellRangeData::testSetDataArray() +apitest::XCellRangeReferrer::testGetReferredCells() +apitest::XCellRangesQuery::testQueryColumnDifference() +apitest::XCellRangesQuery::testQueryContentDifference() +apitest::XCellRangesQuery::testQueryEmptyCells() apitest::XCellRangesQuery::testQueryFormulaCells() +apitest::XCellRangesQuery::testQueryIntersection() +apitest::XCellRangesQuery::testQueryRowDifference() +apitest::XCellRangesQuery::testQueryVisibleCells() +apitest::XDataPilotDescriptor::testGetColumnFields() +apitest::XDataPilotDescriptor::testGetDataFields() +apitest::XDataPilotDescriptor::testGetDataPilotFields() +apitest::XDataPilotDescriptor::testGetFilterDescriptor() apitest::XDataPilotDescriptor::testGetHiddenFields() +apitest::XDataPilotDescriptor::testGetPageFields() +apitest::XDataPilotDescriptor::testGetRowFields() +apitest::XDataPilotDescriptor::testSourceRange() +apitest::XDataPilotDescriptor::testTag() apitest::XDataPilotFieldGrouping::testCreateDateGroup() +apitest::XDataPilotFieldGrouping::testCreateNameGroup() +apitest::XDataPilotTable2::testGetDrillDownData() +apitest::XDataPilotTable2::testGetOutputRangeByType() +apitest::XDataPilotTable2::testGetPositionData() +apitest::XDataPilotTable2::testInsertDrillDownSheet() +apitest::XDataPilotTable::testGetOutputRange() +apitest::XDataPilotTable::testRefresh() +apitest::XDatabaseRange::testDataArea() +apitest::XDatabaseRange::testGetFilterDescriptor() +apitest::XDatabaseRange::testGetImportDescriptor() +apitest::XDatabaseRange::testGetSortDescriptor() +apitest::XDatabaseRange::testGetSubtotalDescriptor() +apitest::XDatabaseRange::testRefresh() apitest::XElementAccess::testGetElementType() apitest::XElementAccess::testHasElements() +apitest::XGoalSeek::testSeekGoal() apitest::XIndexAccess::XIndexAccess(int) apitest::XIndexAccess::testGetByIndex() apitest::XIndexAccess::testGetByIndexException() apitest::XIndexAccess::testGetCount() apitest::XNameContainer::XNameContainer() +apitest::XNameContainer::XNameContainer(rtl::OUString const&) +apitest::XNameContainer::testRemoveByName() apitest::XNameReplace::testReplaceByName() +apitest::XNamed::testGetName() +apitest::XNamed::testSetName() +apitest::XNamedRange::testGetContent() +apitest::XNamedRange::testGetReferencePosition() +apitest::XNamedRange::testGetType() +apitest::XNamedRange::testSetContent() +apitest::XNamedRange::testSetReferencePosition() +apitest::XNamedRange::testSetType() +apitest::XNamedRanges::XNamedRanges() apitest::XNamedRanges::XNamedRanges(rtl::OUString const&) +apitest::XNamedRanges::testAddNewByName() +apitest::XNamedRanges::testAddNewFromTitles() +apitest::XNamedRanges::testOutputList() apitest::XNamedRanges::testRemoveByName() +apitest::XPrintAreas::testSetAndGetPrintTitleColumns() +apitest::XPrintAreas::testSetAndGetPrintTitleRows() +apitest::XPropertySet::PropsToTest::PropsToTest() apitest::XPropertySet::testAddPropertyChangeListener() apitest::XPropertySet::testAddVetoableChangeListener() +apitest::XPropertySet::testGetPropertyValue() apitest::XPropertySet::testRemovePropertyChangeListener() apitest::XPropertySet::testRemoveVetoableChangeListener() +apitest::XPropertySet::testSetPropertyValue() +apitest::XReplaceable::testCreateReplaceDescriptor() +apitest::XReplaceable::testReplaceAll() +apitest::XSearchable::testFindAll() +apitest::XSearchable::testFindFirst() +apitest::XSearchable::testFindNext() +apitest::XSheetAnnotation::testGetAuthor() +apitest::XSheetAnnotation::testGetDate() +apitest::XSheetAnnotation::testGetIsVisible() +apitest::XSheetAnnotation::testGetPosition() +apitest::XSheetAnnotation::testSetIsVisible() +apitest::XSheetAnnotations::testCount() +apitest::XSheetAnnotations::testInsertNew() +apitest::XSheetAnnotations::testRemoveByIndex() apitest::XSheetOutline::testAutoOutline() +apitest::XSheetOutline::testClearOutline() +apitest::XSheetOutline::testGroup() +apitest::XSheetOutline::testHideDetail() +apitest::XSheetOutline::testShowDetail() +apitest::XSheetOutline::testShowLevel() +apitest::XSheetOutline::testUngroup() apitest::XSpreadsheetDocument::testGetSheets() +apitest::XSpreadsheets2::XSpreadsheets2() +apitest::XSpreadsheets2::testImportCellStyle() +apitest::XSpreadsheets2::testImportFormulaBasicMath() +apitest::XSpreadsheets2::testImportFormulaWithNamedRange() +apitest::XSpreadsheets2::testImportNamedRangeDefinedInSource() +apitest::XSpreadsheets2::testImportNamedRangeRedefinedInSource() +apitest::XSpreadsheets2::testImportNewNamedRange() +apitest::XSpreadsheets2::testImportOverExistingNamedRange() +apitest::XSpreadsheets2::testImportString() +apitest::XSpreadsheets2::testImportValue() +apitest::XSpreadsheets2::testImportedSheetNameAndIndex() apitest::XText::testInsertRemoveTextContent() -basebmp::createBitmapDevice(basegfx::B2IVector const&, bool, basebmp::Format, boost::shared_array const&, boost::shared_ptr > const> const&) -basebmp::createBitmapDevice(basegfx::B2IVector const&, bool, basebmp::Format, boost::shared_ptr > const> const&) +apitest::XTextContent::testAttach() +apitest::XTextContent::testGetAnchor() +apitest::XTextField::testGetPresentation() basegfx::snapToNearestMultiple(double, double) basegfx::snapToRange(double, double, double) basegfx::tools::containsOnlyHorizontalAndVerticalEdges(basegfx::B2DPolyPolygon const&) -basegfx::tools::createSourceRangeTargetRangeTransform(basegfx::B2DRange const&, basegfx::B2DRange const&) -basegfx::unotools::homMatrixFromMatrix(basegfx::B2DHomMatrix&, com::sun::star::geometry::Matrix2D const&) +basegfx::tools::equal(basegfx::B2DPolygon const&, basegfx::B2DPolygon const&, double const&) +basegfx::tools::equal(basegfx::B3DPolyPolygon const&, basegfx::B3DPolyPolygon const&) canvas::createSurfaceProxyManager(boost::shared_ptr const&) -comphelper::ComponentContext::ComponentContext(com::sun::star::uno::Reference const&) -comphelper::ComponentContext::createComponentWithArguments(rtl::OUString const&, com::sun::star::uno::Sequence const&) const -comphelper::ComponentContext::getSingleton(rtl::OUString const&) const -comphelper::MediaDescriptor::PROP_DEEPDETECTION() +chart::ChartModelHelper::setPageSize(com::sun::star::awt::Size const&, com::sun::star::uno::Reference const&) +chart::ModifyListenerCallBack::startListening(com::sun::star::uno::Reference const&) +codemaker::ExceptionTree::add(rtl::OString const&, rtl::Reference const&) +codemaker::convertString(rtl::OUString const&) +codemaker::cpp::scopedCppName(rtl::OString const&, bool) +codemaker::cpp::translateUnoToCppIdentifier(rtl::OString const&, rtl::OString const&, codemaker::cpp::IdentifierTranslationMode, rtl::OString const*) +codemaker::cpp::translateUnoToCppType(codemaker::UnoType::Sort, rtl::OUString const&) +codemaker::java::translateUnoToJavaIdentifier(rtl::OString const&, rtl::OString const&) +codemaker::java::translateUnoToJavaType(codemaker::UnoType::Sort, rtl::OString const&, bool) comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr const&, rtl::OUString const&) const comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr const&, rtl::OUString const&, com::sun::star::uno::Any const&) const +connectivity::OSQLParseNode::showParseTree(rtl::OUString&) const connectivity::file::OStatement_Base::reset() connectivity::firebird::release(int&, cppu::OBroadcastHelperVar&, com::sun::star::uno::Reference&, com::sun::star::lang::XComponent*) connectivity::sdbcx::OGroup::OGroup(rtl::OUString const&, unsigned char) @@ -130,42 +320,49 @@ formula::FormulaTokenArray::AddString(unsigned short const*) formula::SingleVectorRefToken::SingleVectorRefToken(double const*, unsigned long) framework::MenuBarManager::getComponentContext() framework::MenuManager::getContext() -linguistic::LinguIsUnspecified(rtl::OUString const&) oglcanvas::CanvasHelper::flush() const oglcanvas::TextLayout::draw(com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&, com::sun::star::uno::Reference const&) const -oox::core::Decrypt::aes128cbc(std::__debug::vector >&, std::__debug::vector >&, std::__debug::vector >&, std::__debug::vector >&) -oox::drawingml::TextListStyle::dump() const +oox::AttributeConversion::decodeDouble(rtl::OUString const&) +oox::core::Decrypt::aes128cbc(std::vector >&, std::vector >&, std::vector >&, std::vector >&) +oox::drawingml::Shape::getWps() oox::xls::BiffDrawingObjectBase::BiffDrawingObjectBase(oox::xls::WorksheetHelper const&) +oox::xls::FormulaParser::convertBoolToFormula(bool) const +oox::xls::WorkbookHelper::getDocShell() oox::xls::WorksheetGlobals::getColumns(oox::ValueRange const&) const oox::xls::WorksheetGlobals::getRows(oox::ValueRange const&) const +psp::FontCache::markEmptyDir(int, bool) +psp::PPDParser::getFont(int) const +psp::PrintFontManager::getFontListWithFastInfo(std::list >&) +registry::tools::Options::Options(char const*) +registry::tools::Options::badOption(char const*, char const*) const +registry::tools::Options::initOptions(std::vector, std::allocator >, std::allocator, std::allocator > > >&) +registry::tools::convertToFileUrl(char const*, int) rtl_OUString::convertFromString::test() +sax_fastparser::FastSerializerHelper::copyTopMarkPop() +sax_fastparser::FastSerializerHelper::copyTopMarkPush() +sc::CLBuildKernelThread::consume() +sc::CLBuildKernelThread::produce() sc::CellTextAttr::CellTextAttr(unsigned short, unsigned char) sc::ColumnSet::has(short, short) const -sc::opencl::OclCalc::mapAndCopyArithmetic32Bits(double const*, int) -sc::opencl::OclCalc::mapAndCopyArithmetic64Bits(double const*, int) -sc::opencl::OclCalc::oclHostFormulaCount32Bits(unsigned int*, unsigned int*, double*, int) -sc::opencl::OclCalc::oclHostFormulaCount64Bits(unsigned int*, unsigned int*, double*&, int) -sc::opencl::OclCalc::oclHostFormulaSumProduct32Bits(float*, float*, unsigned int*, double*, int) -sc::opencl::OclCalc::oclHostFormulaSumProduct64Bits(double*, double*, unsigned int*, double*&, int) -sc::opencl::OclCalc::oclSimpleDeltaOperation(OpCodeEnum, double const*, double const*, unsigned long, double) +sc::CompareFunc(double, sc::Compare::Cell const&, sc::CompareOptions*) +sc::DataStream::ToMoveType(rtl::OUString const&) +sc::OpenCLDevice::selectedDeviceIsNativeCPU(ds_device) +sc::OpenCLDevice::selectedDeviceIsOpenCL(ds_device) +sc::opencl::OpenclDevice::getOpenclState() sc::opencl::OpenclDevice::releaseOpenclRunEnv() sc::opencl::OpenclDevice::setOpenclState(int) -sc::opencl::getTimeDiff(TimeValue const&, TimeValue const&) -sc::sidebar::CellLineStyleValueSet::SetImage(Image) -sc_apitest::main() sd::LeftDrawPaneShell::RegisterInterface(SfxModule*) sd::LeftImpressPaneShell::RegisterInterface(SfxModule*) sd::framework::Pane::SetWindow(Window*) sd::presenter::PresenterCanvas::copyRect(com::sun::star::uno::Reference const&, com::sun::star::geometry::RealRectangle2D const&, com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&, com::sun::star::geometry::RealRectangle2D const&, com::sun::star::rendering::ViewState const&, com::sun::star::rendering::RenderState const&) -sd::sidebar::LayoutMenu::GetMinimumWidth() -sd::sidebar::LayoutMenu::GetPreferredSize() -sd::sidebar::LayoutMenu::GetPreferredWidth(int) sdr::overlay::OverlayRectangle::setSecondPosition(basegfx::B2DPoint const&) +sdr::table::Cell::getName() sdr::table::SdrTableObj::getRowCount() const -sfx2::sidebar::Context::EvaluateMatch(std::__debug::vector > const&) const +sfx2::sidebar::Context::EvaluateMatch(std::vector > const&) const sfx2::sidebar::ContextList::IsEmpty() -sfx2::sidebar::Deck::PrintWindowTree(std::__debug::vector > const&) -sfx2::sidebar::EnumContext::EvaluateMatch(std::__debug::vector > const&) const +sfx2::sidebar::Deck::PrintWindowTree(std::vector > const&) +sfx2::sidebar::EnumContext::EvaluateMatch(std::vector > const&) const +sfx2::sidebar::EnumContext::GetContext() const sfx2::sidebar::Paint::Set(sfx2::sidebar::Paint const&) sfx2::sidebar::Panel::PrintWindowTree() sfx2::sidebar::SidebarDockingWindow::GetChildWindow() @@ -173,6 +370,17 @@ sfx2::sidebar::TabBar::GetItemForId(rtl::OUString const&) std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Rb_tree(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >&&) std::auto_ptr::auto_ptr(std::auto_ptr&) std::auto_ptr::auto_ptr(std::auto_ptr_ref) +std::vector, std::allocator > >::reserve(unsigned long) svl::SharedStringPool::SharedStringPool() +svt::ToolPanelDeck_Impl::SetAccessibleParentWindow(Window*) +svx::frame::Style::Style(editeng::SvxBorderLine const&, double, unsigned short) +sw::access::SwAccessibleChild::GetAnchorPosition() const +utl::MediaDescriptor::PROP_DEEPDETECTION() utl::toISO8601(com::sun::star::util::Time const&) -vclmain::createApplication() +vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, int) +writerfilter::WW8TableManager::WW8TableManager() +writerfilter::dump(writerfilter::OutputWithDepth, std::allocator > >&, char const*, boost::shared_ptr >) +writerfilter::dump(writerfilter::OutputWithDepth, std::allocator > >&, char const*, boost::shared_ptr >) +writerfilter::dump(writerfilter::OutputWithDepth, std::allocator > >&, char const*, rtl::OUString const&) +writerfilter::dump(writerfilter::OutputWithDepth, std::allocator > >&, char const*, unsigned int) +writerfilter::resourcemodel::resolveAttributeProperties(writerfilter::Properties&, writerfilter::Value&) -- cgit