compilerplugins/clang/unusedmethods.py | 4 compilerplugins/clang/unusedmethods.results | 242 +++++++++++++++------------- include/svx/ParaSpacingControl.hxx | 4 3 files changed, 135 insertions(+), 115 deletions(-)
New commits: commit 964dec70d0d068faa20f4b9ffac1cfd5911d81c2 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Fri Nov 29 14:32:56 2019 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Sat Nov 30 21:32:46 2019 +0100 loplugin:unusedmethods Change-Id: Ie92b52eabc425a4688b6d4f7cfb547ad59f4afc4 Reviewed-on: https://gerrit.libreoffice.org/84106 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/compilerplugins/clang/unusedmethods.py b/compilerplugins/clang/unusedmethods.py index a8b20cfe3b2c..3df9b1e96ebe 100755 --- a/compilerplugins/clang/unusedmethods.py +++ b/compilerplugins/clang/unusedmethods.py @@ -157,7 +157,9 @@ for d in definitionSet: if d[0] == "basic_ostream<type-parameter-?-?, type-parameter-?-?> &" and d[1].startswith("operator<<(basic_ostream<type-parameter-?-?"): continue # ignore lambdas - if " ::operator " in method or " ::__invoke(" in method or " ::operator()" in method: continue + if (" ::operator " in method) or (" ::__invoke(" in method) or (" ::operator())" in method): continue + # ignore stuff generated by std::function parameters + if ("(anonymous)::operator " in method) and ("(*)" in method): continue # stuff generated by Qt if "::tr(" in method or "::trUtf8(" in method: continue diff --git a/compilerplugins/clang/unusedmethods.results b/compilerplugins/clang/unusedmethods.results index f040a1cd7b50..5ed289bf5751 100644 --- a/compilerplugins/clang/unusedmethods.results +++ b/compilerplugins/clang/unusedmethods.results @@ -72,8 +72,14 @@ connectivity/source/inc/OTypeInfo.hxx:47 _Bool connectivity::OTypeInfo::operator!=(const struct connectivity::OTypeInfo &) const cui/source/dialogs/SpellAttrib.hxx:73 _Bool svx::SpellErrorDescription::operator==(const struct svx::SpellErrorDescription &) const -cui/source/inc/cfg.hxx:333 +cui/source/inc/cfg.hxx:335 class rtl::OUString SvxMenuEntriesListBox::get_text(int) +cui/source/inc/cfg.hxx:336 + void SvxMenuEntriesListBox::set_image(int,const class com::sun::star::uno::Reference<class com::sun::star::graphic::XGraphic> &,int) +cui/source/inc/cfg.hxx:337 + void SvxMenuEntriesListBox::set_dropdown(int,int) +cui/source/inc/cfg.hxx:338 + void SvxMenuEntriesListBox::set_id(int,const class rtl::OUString &) cui/source/inc/cfgutil.hxx:142 _Bool CuiConfigFunctionListBox::get_iter_first(class weld::TreeIter &) const cui/source/inc/cfgutil.hxx:144 @@ -502,15 +508,15 @@ include/drawinglayer/texture/texture.hxx:44 _Bool drawinglayer::texture::GeoTexSvx::operator!=(const class drawinglayer::texture::GeoTexSvx &) const include/drawinglayer/tools/primitive2dxmldump.hxx:44 void drawinglayer::tools::Primitive2dXmlDump::dump(const class drawinglayer::primitive2d::Primitive2DContainer &,const class rtl::OUString &) -include/editeng/editeng.hxx:459 +include/editeng/editeng.hxx:235 + _Bool EditEngine::GetDirectVertical() const +include/editeng/editeng.hxx:237 + enum TextRotation EditEngine::GetRotation() const +include/editeng/editeng.hxx:462 _Bool EditEngine::(anonymous)::__invoke(const class SvxFieldData *) -include/editeng/editeng.hxx:459 - _Bool (*)(const class SvxFieldData *) EditEngine::(anonymous)::operator bool (*)(const SvxFieldData *)() const include/editeng/hyphenzoneitem.hxx:63 _Bool SvxHyphenZoneItem::IsPageEnd() const -include/editeng/outliner.hxx:879 - _Bool (*)(const class SvxFieldData *) Outliner::(anonymous)::operator bool (*)(const SvxFieldData *)() const -include/editeng/outliner.hxx:879 +include/editeng/outliner.hxx:881 _Bool Outliner::(anonymous)::__invoke(const class SvxFieldData *) include/filter/msfilter/mstoolbar.hxx:102 Indent::Indent(_Bool) @@ -532,18 +538,20 @@ include/o3tl/cow_wrapper.hxx:323 type-parameter-?-? * o3tl::cow_wrapper::get() include/o3tl/enumarray.hxx:105 typename type-parameter-?-?::value_type * o3tl::enumarray_iterator::operator->() const -include/o3tl/enumarray.hxx:132 +include/o3tl/enumarray.hxx:130 const typename type-parameter-?-?::value_type * o3tl::enumarray_const_iterator::operator->() const -include/o3tl/enumarray.hxx:135 +include/o3tl/enumarray.hxx:133 _Bool o3tl::enumarray_const_iterator::operator==(const enumarray_const_iterator<EA> &) const include/o3tl/safeint.hxx:79 typename enable_if<std::is_unsigned<T>::value, type-parameter-?-?>::type o3tl::saturating_sub(type-parameter-?-?,type-parameter-?-?) -include/o3tl/span.hxx:49 - o3tl::span::span(int (&)[N]) +include/o3tl/sorted_vector.hxx:206 + _Bool o3tl::sorted_vector::operator!=(const sorted_vector<Value, Compare, Find, > &) const include/o3tl/span.hxx:49 o3tl::span::span(int const (&)[N]) include/o3tl/span.hxx:49 o3tl::span::span(unsigned short const (&)[N]) +include/o3tl/span.hxx:49 + o3tl::span::span(int (&)[N]) include/o3tl/span.hxx:51 o3tl::span::span<T>(type-parameter-?-? *,unsigned long) include/o3tl/strong_int.hxx:86 @@ -551,8 +559,6 @@ include/o3tl/strong_int.hxx:86 include/o3tl/strong_int.hxx:112 strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator--(int) include/o3tl/strong_int.hxx:121 - _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,type-parameter-?-?...) const -include/o3tl/strong_int.hxx:121 _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct ViewShellIdTag>,type-parameter-?-?...) const include/o3tl/strong_int.hxx:121 _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>,type-parameter-?-?...) const @@ -560,6 +566,8 @@ include/o3tl/strong_int.hxx:121 _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned char, struct SdrLayerIDTag>,type-parameter-?-?...) const include/o3tl/strong_int.hxx:121 _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,type-parameter-?-?...) const +include/o3tl/strong_int.hxx:121 + _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,type-parameter-?-?...) const include/o3tl/typed_flags_set.hxx:114 typename typed_flags<type-parameter-?-?>::Wrap operator~(typename typed_flags<type-parameter-?-?>::Wrap) include/o3tl/typed_flags_set.hxx:147 @@ -622,8 +630,6 @@ include/svx/autoformathelper.hxx:145 _Bool AutoFormatBase::operator==(const class AutoFormatBase &) include/svx/ClassificationDialog.hxx:77 void svx::ClassificationDialog::(anonymous)::__invoke() -include/svx/ClassificationDialog.hxx:77 - void (*)(void) svx::ClassificationDialog::(anonymous)::operator void (*)()() const include/svx/ClassificationEditView.hxx:38 void svx::ClassificationEditView::SetCharAttributes() include/svx/ClassificationEditView.hxx:44 @@ -634,8 +640,6 @@ include/svx/ClassificationField.hxx:52 _Bool svx::ClassificationResult::operator==(const class svx::ClassificationResult &) const include/svx/DiagramDataInterface.hxx:33 class rtl::OUString DiagramDataInterface::getString() const -include/svx/dialcontrol.hxx:138 - void svx::DialControl::LinkedFieldModifyHdl() include/svx/dlgctrl.hxx:256 void SvxLineLB::set_sensitive(_Bool) include/svx/dlgctrl.hxx:257 @@ -647,9 +651,9 @@ include/svx/framelink.hxx:194 include/svx/langbox.hxx:94 void SvxLanguageBox::show() include/svx/ParaSpacingControl.hxx:35 - void svx::ParaULSpacingControl::RegisterControl(unsigned short,class SfxModule *) -include/svx/ParaSpacingControl.hxx:35 class SfxToolBoxControl * svx::ParaULSpacingControl::CreateImpl(unsigned short,unsigned short,class ToolBox &) +include/svx/ParaSpacingControl.hxx:35 + void svx::ParaULSpacingControl::RegisterControl(unsigned short,class SfxModule *) include/svx/ParaSpacingControl.hxx:67 class SfxToolBoxControl * svx::ParaLRSpacingControl::CreateImpl(unsigned short,unsigned short,class ToolBox &) include/svx/ParaSpacingControl.hxx:67 @@ -904,61 +908,61 @@ include/vcl/weld.hxx:748 void weld::TreeView::append(const class weld::TreeIter *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) include/vcl/weld.hxx:757 void weld::TreeView::append(const class rtl::OUString &,const class rtl::OUString &,class VirtualDevice &) -include/vcl/weld.hxx:940 +include/vcl/weld.hxx:941 void weld::TreeView::select_all() -include/vcl/weld.hxx:984 +include/vcl/weld.hxx:985 const class rtl::OUString & weld::TreeView::get_saved_value() const -include/vcl/weld.hxx:1030 +include/vcl/weld.hxx:1031 class rtl::OUString weld::IconView::get_selected_id() const -include/vcl/weld.hxx:1045 +include/vcl/weld.hxx:1046 _Bool weld::IconView::get_cursor(class weld::TreeIter *) const -include/vcl/weld.hxx:1055 +include/vcl/weld.hxx:1056 void weld::IconView::select_all() -include/vcl/weld.hxx:1061 - void weld::IconView::save_value() include/vcl/weld.hxx:1062 - const class rtl::OUString & weld::IconView::get_saved_value() const + void weld::IconView::save_value() include/vcl/weld.hxx:1063 + const class rtl::OUString & weld::IconView::get_saved_value() const +include/vcl/weld.hxx:1064 _Bool weld::IconView::get_value_changed_from_saved() const -include/vcl/weld.hxx:1160 +include/vcl/weld.hxx:1161 void weld::MenuButton::append_item(const class rtl::OUString &,const class rtl::OUString &) -include/vcl/weld.hxx:1172 +include/vcl/weld.hxx:1173 void weld::MenuButton::append_item(const class rtl::OUString &,const class rtl::OUString &,class VirtualDevice &) -include/vcl/weld.hxx:1177 +include/vcl/weld.hxx:1178 void weld::MenuButton::append_separator(const class rtl::OUString &) -include/vcl/weld.hxx:1241 +include/vcl/weld.hxx:1242 class rtl::OUString weld::ProgressBar::get_text() const -include/vcl/weld.hxx:1258 +include/vcl/weld.hxx:1259 void weld::Entry::signal_insert_text(class rtl::OUString &) -include/vcl/weld.hxx:1274 +include/vcl/weld.hxx:1275 int weld::Entry::get_position() const -include/vcl/weld.hxx:1383 +include/vcl/weld.hxx:1384 void weld::FormattedSpinButton::set_max(double) -include/vcl/weld.hxx:1433 +include/vcl/weld.hxx:1434 void weld::EntryTreeView::EntryModifyHdl(const class weld::Entry &) -include/vcl/weld.hxx:1669 +include/vcl/weld.hxx:1670 class Size weld::MetricSpinButton::get_size_request() const -include/vcl/weld.hxx:1680 +include/vcl/weld.hxx:1681 void weld::MetricSpinButton::set_position(int) -include/vcl/weld.hxx:1726 +include/vcl/weld.hxx:1727 _Bool weld::TimeSpinButton::get_sensitive() const -include/vcl/weld.hxx:1728 - _Bool weld::TimeSpinButton::get_visible() const include/vcl/weld.hxx:1729 - void weld::TimeSpinButton::grab_focus() + _Bool weld::TimeSpinButton::get_visible() const include/vcl/weld.hxx:1730 + void weld::TimeSpinButton::grab_focus() +include/vcl/weld.hxx:1731 _Bool weld::TimeSpinButton::has_focus() const -include/vcl/weld.hxx:1733 - void weld::TimeSpinButton::save_value() include/vcl/weld.hxx:1734 + void weld::TimeSpinButton::save_value() +include/vcl/weld.hxx:1735 _Bool weld::TimeSpinButton::get_value_changed_from_saved() const -include/vcl/weld.hxx:1794 +include/vcl/weld.hxx:1795 int weld::TextView::vadjustment_get_lower() const -include/vcl/weld.hxx:1888 +include/vcl/weld.hxx:1889 void weld::Menu::append_check(const class rtl::OUString &,const class rtl::OUString &) -include/vcl/weld.hxx:1920 +include/vcl/weld.hxx:1921 void weld::Toolbar::append_separator(const class rtl::OUString &) -include/vcl/weld.hxx:1966 +include/vcl/weld.hxx:1967 class std::unique_ptr<class weld::Window, struct std::default_delete<class weld::Window> > weld::Builder::weld_window(const class rtl::OString &,_Bool) include/vcl/window.hxx:410 const char * ImplDbgCheckWindow(const void *) @@ -968,8 +972,14 @@ include/xmloff/txtimp.hxx:386 class XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetSequenceIdBP() include/xmloff/txtimp.hxx:566 class rtl::OUString XMLTextImportHelper::FindActiveBookmarkName() +libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx:73 + void ::operator()(struct _GtkBuilder *) const libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.cxx:32 void * gtv_comments_sidebar_get_instance_private(struct GtvCommentsSidebar *) +libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.cxx:50 + void ::operator()(struct _GList *) const +libreofficekit/qa/gtktiledviewer/gtv-helpers.cxx:77 + void ::operator()(struct _GtkTargetList *) const libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.hxx:35 void openLokDialog(struct _GtkWidget *,void *) lotuswordpro/source/filter/clone.hxx:28 @@ -1031,11 +1041,9 @@ sc/inc/mtvelements.hxx:73 sc/inc/mtvelements.hxx:73 void sc::mdds_mtv_insert_values(struct mdds::mtv::base_element_block &,unsigned long,const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:77 - struct mdds::mtv::base_element_block * mdds_mtv_create_new_block(const class ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 void mdds_mtv_insert_values(struct mdds::mtv::base_element_block &,unsigned long,const class ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:78 - void mdds_mtv_prepend_values(struct mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:77 + struct mdds::mtv::base_element_block * mdds_mtv_create_new_block(const class ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:78 void mdds_mtv_assign_values(struct mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:78 @@ -1046,6 +1054,8 @@ sc/inc/mtvelements.hxx:78 void mdds_mtv_insert_values(struct mdds::mtv::base_element_block &,unsigned long,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:78 void mdds_mtv_append_values(struct mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:78 + void mdds_mtv_prepend_values(struct mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:79 void mdds_mtv_insert_values(struct mdds::mtv::base_element_block &,unsigned long,const class ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:79 @@ -1082,11 +1092,11 @@ sc/inc/stlalgorithm.hxx:61 _Bool sc::AlignedAllocator::operator==(const AlignedAllocator<T, Alignment> &) const sc/inc/stlalgorithm.hxx:62 _Bool sc::AlignedAllocator::operator!=(const AlignedAllocator<T, Alignment> &) const -sc/inc/table.hxx:319 +sc/inc/table.hxx:320 _Bool ScTable::IsColRowTabValid(const short,const int,const short) const sc/inc/userlist.hxx:88 class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > *, class std::__cxx1998::vector<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> >, class std::allocator<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > > > >, class std::__debug::vector<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> >, class std::allocator<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > > >, struct std::random_access_iterator_tag> ScUserList::begin() const -sc/qa/unit/helper/qahelper.hxx:160 +sc/qa/unit/helper/qahelper.hxx:162 class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > print(const class ScAddress &) sc/qa/unit/screenshots/screenshots.cxx:326 int main() @@ -1112,30 +1122,34 @@ sc/qa/unit/ucalc.hxx:535 void Test::testCondFormatListenToOwnRange() sc/source/core/inc/interpre.hxx:73 basic_ostream<type-parameter-?-?, type-parameter-?-?> & sc::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const struct sc::ParamIfsResult &) -sc/source/core/opencl/formulagroupcl.cxx:1051 - _Bool sc::opencl::DynamicKernelSlidingArgument::NeedParallelReduction() const -sc/source/core/opencl/formulagroupcl.cxx:1059 - void sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowFunction(class std::__cxx11::basic_stringstream<char> &) -sc/source/core/opencl/formulagroupcl.cxx:1338 - void sc::opencl::ParallelReductionVectorRef::GenSlidingWindowFunction(class std::__cxx11::basic_stringstream<char> &) -sc/source/core/opencl/formulagroupcl.cxx:1518 - class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::ParallelReductionVectorRef::GenSlidingWindowDeclRef(_Bool) const -sc/source/core/opencl/formulagroupcl.cxx:1553 - unsigned long sc::opencl::ParallelReductionVectorRef::Marshal(struct _cl_kernel *,int,int,struct _cl_program *) -sc/source/core/opencl/formulagroupcl.cxx:1730 - unsigned long sc::opencl::ParallelReductionVectorRef::GetArrayLength() const -sc/source/core/opencl/formulagroupcl.cxx:1732 - unsigned long sc::opencl::ParallelReductionVectorRef::GetWindowSize() const -sc/source/core/opencl/formulagroupcl.cxx:1734 - _Bool sc::opencl::ParallelReductionVectorRef::GetStartFixed() const -sc/source/core/opencl/formulagroupcl.cxx:1736 - _Bool sc::opencl::ParallelReductionVectorRef::GetEndFixed() const +sc/source/core/opencl/formulagroupcl.cxx:1057 + _Bool sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::NeedParallelReduction() const +sc/source/core/opencl/formulagroupcl.cxx:1065 + void sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenSlidingWindowFunction(class std::__cxx11::basic_stringstream<char> &) +sc/source/core/opencl/formulagroupcl.cxx:1348 + void sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenSlidingWindowFunction(class std::__cxx11::basic_stringstream<char> &) +sc/source/core/opencl/formulagroupcl.cxx:1528 + class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenSlidingWindowDeclRef(_Bool) const +sc/source/core/opencl/formulagroupcl.cxx:1563 + unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::Marshal(struct _cl_kernel *,int,int,struct _cl_program *) +sc/source/core/opencl/formulagroupcl.cxx:1740 + unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetArrayLength() const +sc/source/core/opencl/formulagroupcl.cxx:1742 + unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetWindowSize() const +sc/source/core/opencl/formulagroupcl.cxx:1744 + _Bool sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetStartFixed() const +sc/source/core/opencl/formulagroupcl.cxx:1746 + _Bool sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetEndFixed() const sc/source/core/opencl/op_statistical.hxx:206 sc::opencl::OpGeoMean::OpGeoMean() -sc/source/core/tool/scmatrix.cxx:2290 - type-parameter-?-? * wrapped_iterator::operator->() const -sc/source/core/tool/scmatrix.cxx:3294 - const class svl::SharedString & matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const +sc/source/core/tool/interpr1.cxx:4161 + double ::operator()(double,unsigned long) const +sc/source/core/tool/interpr1.cxx:6503 + double ::operator()(const struct sc::ParamIfsResult &) const +sc/source/core/tool/scmatrix.cxx:2274 + type-parameter-?-? * (anonymous namespace)::wrapped_iterator::operator->() const +sc/source/core/tool/scmatrix.cxx:3280 + const class svl::SharedString & matop::(anonymous namespace)::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const sc/source/filter/inc/htmlpars.hxx:60 void ScHTMLStyles::add(const char *,unsigned long,const char *,unsigned long,const class rtl::OUString &,const class rtl::OUString &) sc/source/filter/inc/orcusinterface.hxx:77 @@ -1218,8 +1232,8 @@ sd/source/ui/inc/unomodel.hxx:137 _Bool SdXImpressDocument::operator==(const class SdXImpressDocument &) const sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx:200 _Bool sd::slidesorter::view::InsertPosition::operator!=(const class sd::slidesorter::view::InsertPosition &) const -sdext/source/pdfimport/pdfparse/pdfparse.cxx:109 - long PDFGrammar<boost::spirit::file_iterator<char, boost::spirit::fileiter_impl::mmap_file_iterator<char> > >::pdf_string_parser::operator()(const type-parameter-?-? &,struct boost::spirit::nil_t &) const +sdext/source/pdfimport/pdfparse/pdfparse.cxx:110 + long (anonymous namespace)::PDFGrammar<boost::spirit::file_iterator<char, boost::spirit::fileiter_impl::mmap_file_iterator<char> > >::pdf_string_parser::operator()(const type-parameter-?-? &,struct boost::spirit::nil_t &) const sfx2/inc/autoredactdialog.hxx:71 void TargetsTable::SelectByName(const class rtl::OUString &) sfx2/inc/autoredactdialog.hxx:75 @@ -1287,8 +1301,6 @@ slideshow/source/inc/listenercontainer.hxx:45 slideshow/source/inc/listenercontainer.hxx:45 _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::IntrinsicAnimationEventHandler> &) slideshow/source/inc/listenercontainer.hxx:45 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ShapeListenerEventHandler> &) -slideshow/source/inc/listenercontainer.hxx:45 _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ViewUpdate> &) slideshow/source/inc/listenercontainer.hxx:45 _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::UserPaintEventHandler> &) @@ -1296,6 +1308,8 @@ slideshow/source/inc/listenercontainer.hxx:45 _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::PauseEventHandler> &) slideshow/source/inc/listenercontainer.hxx:45 _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::AnimationEventHandler> &) +slideshow/source/inc/listenercontainer.hxx:45 + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ShapeListenerEventHandler> &) slideshow/source/inc/listenercontainer.hxx:55 _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ViewRepaintHandler> &) slideshow/source/inc/listenercontainer.hxx:55 @@ -1306,26 +1320,24 @@ svgio/inc/svgstyleattributes.hxx:348 class svgio::svgreader::SvgNumber svgio::svgreader::SvgStyleAttributes::getStrokeDashOffset() const svgio/inc/svgstyleattributes.hxx:372 enum svgio::svgreader::FontStretch svgio::svgreader::SvgStyleAttributes::getFontStretch() const -svl/source/misc/gridprinter.cxx:43 - void rtl::mdds_mtv_assign_values(struct mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) -svl/source/misc/gridprinter.cxx:43 +svl/source/misc/gridprinter.cxx:47 void rtl::mdds_mtv_prepend_values(struct mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) -svl/source/misc/gridprinter.cxx:43 - void rtl::mdds_mtv_insert_values(struct mdds::mtv::base_element_block &,unsigned long,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) -svl/source/misc/gridprinter.cxx:43 +svl/source/misc/gridprinter.cxx:47 + void rtl::mdds_mtv_get_empty_value(class rtl::OUString &) +svl/source/misc/gridprinter.cxx:47 + void rtl::mdds_mtv_assign_values(struct mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) +svl/source/misc/gridprinter.cxx:47 + struct mdds::mtv::base_element_block * rtl::mdds_mtv_create_new_block(const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) +svl/source/misc/gridprinter.cxx:47 void rtl::mdds_mtv_get_value(const struct mdds::mtv::base_element_block &,unsigned long,class rtl::OUString &) -svl/source/misc/gridprinter.cxx:43 +svl/source/misc/gridprinter.cxx:47 void rtl::mdds_mtv_set_values(struct mdds::mtv::base_element_block &,unsigned long,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) -svl/source/misc/gridprinter.cxx:43 +svl/source/misc/gridprinter.cxx:47 void rtl::mdds_mtv_append_values(struct mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) -svl/source/misc/gridprinter.cxx:43 - struct mdds::mtv::base_element_block * rtl::mdds_mtv_create_new_block(const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) -svl/source/misc/gridprinter.cxx:43 - void rtl::mdds_mtv_get_empty_value(class rtl::OUString &) +svl/source/misc/gridprinter.cxx:47 + void rtl::mdds_mtv_insert_values(struct mdds::mtv::base_element_block &,unsigned long,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svx/inc/sdr/contact/viewcontactofgraphic.hxx:56 class SdrGrafObj & sdr::contact::ViewContactOfGraphic::GetGrafObject() -svx/source/accessibility/ChildrenManagerImpl.hxx:169 - class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> accessibility::ChildrenManagerImpl::GetChild(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &) svx/source/svdraw/svdpdf.hxx:92 double ImpSdrPdfImport::Matrix::b() const svx/source/svdraw/svdpdf.hxx:94 @@ -1502,7 +1514,7 @@ sw/source/core/inc/frame.hxx:1391 long SwRectFnSet::LeftDist(const class SwRect &,long) const sw/source/core/inc/frame.hxx:1392 long SwRectFnSet::RightDist(const class SwRect &,long) const -sw/source/core/inc/mvsave.hxx:176 +sw/source/core/inc/mvsave.hxx:169 _Bool ZSortFly::operator==(const class ZSortFly &) const sw/source/core/text/porlin.hxx:118 _Bool SwLinePortion::IsTabRightPortion() const @@ -1548,17 +1560,19 @@ vcl/inc/bitmap/ScanlineTools.hxx:23 void vcl::bitmap::ScanlineTransformer::skipPixel(unsigned int) vcl/inc/bitmapwriteaccess.hxx:75 void BitmapWriteAccess::SetFillColor() -vcl/inc/ControlCacheKey.hxx:34 +vcl/inc/ControlCacheKey.hxx:35 ControlCacheKey::ControlCacheKey(enum ControlType,enum ControlPart,enum ControlState,const class Size &) -vcl/inc/ControlCacheKey.hxx:41 +vcl/inc/ControlCacheKey.hxx:42 _Bool ControlCacheKey::operator==(const class ControlCacheKey &) const -vcl/inc/ControlCacheKey.hxx:50 +vcl/inc/ControlCacheKey.hxx:51 _Bool ControlCacheKey::canCacheControl() const +vcl/inc/ControlCacheKey.hxx:82 + unsigned long ControlCacheHashFunction::operator()(const class ControlCacheKey &) const vcl/inc/fontinstance.hxx:69 void LogicalFontInstance::SetAverageWidthFactor(double) vcl/inc/fontinstance.hxx:70 double LogicalFontInstance::GetAverageWidthFactor() const -vcl/inc/fontinstance.hxx:92 +vcl/inc/fontinstance.hxx:93 void LogicalFontInstance::ReleaseHbFont() vcl/inc/fontselect.hxx:48 _Bool FontSelectPattern::operator!=(const class FontSelectPattern &) const @@ -1566,6 +1580,14 @@ vcl/inc/impgraph.hxx:59 _Bool GraphicID::operator==(const class GraphicID &) const vcl/inc/opengl/BufferObject.hxx:50 void vcl::BufferObject::unbind() +vcl/inc/opengl/gdiimpl.hxx:108 + void OpenGLSalGraphicsImpl::ImplDrawLineAA(double,double,double,double,_Bool) +vcl/inc/opengl/gdiimpl.hxx:115 + _Bool OpenGLSalGraphicsImpl::UseSolid(class Color,unsigned char) +vcl/inc/opengl/gdiimpl.hxx:137 + void OpenGLSalGraphicsImpl::DrawTextureDiff(class OpenGLTexture &,class OpenGLTexture &,const struct SalTwoRect &,_Bool) +vcl/inc/opengl/gdiimpl.hxx:140 + void OpenGLSalGraphicsImpl::DrawMask(class OpenGLTexture &,class Color,const struct SalTwoRect &) vcl/inc/opengl/PackedTextureAtlas.hxx:47 PackedTextureAtlasManager::PackedTextureAtlasManager(int,int) vcl/inc/opengl/PackedTextureAtlas.hxx:50 @@ -1580,16 +1602,6 @@ vcl/inc/opengl/texture.hxx:123 _Bool OpenGLTexture::operator!=(const class OpenGLTexture &) const vcl/inc/opengl/zone.hxx:57 void OpenGLZone::relaxWatchdogTimings() -vcl/inc/openglgdiimpl.hxx:108 - void OpenGLSalGraphicsImpl::ImplDrawLineAA(double,double,double,double,_Bool) -vcl/inc/openglgdiimpl.hxx:115 - _Bool OpenGLSalGraphicsImpl::UseSolid(class Color,unsigned char) -vcl/inc/openglgdiimpl.hxx:137 - void OpenGLSalGraphicsImpl::DrawTextureDiff(class OpenGLTexture &,class OpenGLTexture &,const struct SalTwoRect &,_Bool) -vcl/inc/openglgdiimpl.hxx:140 - void OpenGLSalGraphicsImpl::DrawMask(class OpenGLTexture &,class Color,const struct SalTwoRect &) -vcl/inc/openglgdiimpl.hxx:144 - void OpenGLSalGraphicsImpl::DeferredTextDraw(const class OpenGLTexture &,const class Color,const struct SalTwoRect &) vcl/inc/PhysicalFontFace.hxx:60 int PhysicalFontFace::GetWidth() const vcl/inc/PhysicalFontFace.hxx:69 @@ -1644,6 +1656,12 @@ vcl/inc/salwtype.hxx:118 SalMenuEvent::SalMenuEvent() vcl/inc/schedulerimpl.hxx:38 const char * ImplSchedulerData::GetDebugName() const +vcl/inc/skia/gdiimpl.hxx:192 + void SkiaSalGraphicsImpl::dump(const char *) const +vcl/inc/skia/gdiimpl.hxx:193 + void SkiaSalGraphicsImpl::dump(const class SkBitmap &,const char *) +vcl/inc/skia/salbmp.hxx:70 + void SkiaSalBitmap::dump(const char *) const vcl/inc/unx/glyphcache.hxx:108 void FreetypeManager::ClearFontOptions() vcl/inc/unx/gtk/gtkframe.hxx:214 @@ -1652,10 +1670,14 @@ vcl/inc/unx/saldisp.hxx:378 class SalXLib * SalDisplay::GetXLib() const vcl/inc/unx/salframe.h:184 enum SalFrameStyleFlags X11SalFrame::GetStyle() const -vcl/qa/cppunit/lifecycle.cxx:224 - LeakTestClass::LeakTestClass(_Bool &,type-parameter-?-? &&...) +vcl/qa/cppunit/lifecycle.cxx:234 + (anonymous namespace)::LeakTestClass::LeakTestClass(_Bool &,type-parameter-?-? &&...) +vcl/skia/salbmp.cxx:317 + void ::operator()(void *,void *) const vcl/source/app/scheduler.cxx:83 basic_ostream<type-parameter-?-?, type-parameter-?-?> & (anonymous namespace)::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const class Idle &) +vcl/source/bitmap/BitmapColorQuantizationFilter.cxx:113 + int ::operator()(const void *,const void *) const vcl/source/edit/textdat2.hxx:85 class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::unique_ptr<class TETextPortion, struct std::default_delete<class TETextPortion> > *, class std::__cxx1998::vector<class std::unique_ptr<class TETextPortion, struct std::default_delete<class TETextPortion> >, class std::allocator<class std::unique_ptr<class TETextPortion, struct std::default_delete<class TETextPortion> > > > >, class std::__debug::vector<class std::unique_ptr<class TETextPortion, struct std::default_delete<class TETextPortion> >, class std::allocator<class std::unique_ptr<class TETextPortion, struct std::default_delete<class TETextPortion> > > >, struct std::random_access_iterator_tag> TETextPortionList::begin() const vcl/source/edit/textdat2.hxx:87 diff --git a/include/svx/ParaSpacingControl.hxx b/include/svx/ParaSpacingControl.hxx index 401e8c8ddcbb..a342f423c876 100644 --- a/include/svx/ParaSpacingControl.hxx +++ b/include/svx/ParaSpacingControl.hxx @@ -32,8 +32,6 @@ namespace svx { class ParaULSpacingControl : public SfxToolBoxControl { public: - SFX_DECL_TOOLBOX_CONTROL(); - ParaULSpacingControl(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx); virtual ~ParaULSpacingControl() override; @@ -64,8 +62,6 @@ class ParaLRSpacingControl : public SfxToolBoxControl, public css::ui::XContextChangeEventListener { public: - SFX_DECL_TOOLBOX_CONTROL(); - ParaLRSpacingControl(sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx); virtual ~ParaLRSpacingControl() override; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits