// Hint files help the Visual Studio IDE interpret Visual C++ identifiers // such as names of functions and macros. // For more information see https://go.microsoft.com/fwlink/?linkid=865984 #define SAL_THROW_EXTERN_C() #define SAL_UNUSED_PARAMETER #define DECL_LINK(Member, ArgType, RetType) \ RetType Member(ArgType) #define DECL_STATIC_LINK(Class, Member, ArgType, RetType) \ static RetType Member(Class *, ArgType) #define DECL_DLLPRIVATE_LINK(Member, ArgType, RetType) \ SAL_DLLPRIVATE RetType Member(ArgType) #define DECL_DLLPRIVATE_STATIC_LINK(Class, Member, ArgType, RetType) \ SAL_DLLPRIVATE static RetType Member(Class *, ArgType) #define IMPL_LINK(Class, Member, ArgType, ArgName, RetType) \ RetType Class::Member(ArgType ArgName) #define IMPL_LINK_NOARG(Class, Member, ArgType, RetType) \ RetType Class::Member(ArgType) #define IMPL_STATIC_LINK(Class, Member, ArgType, ArgName, RetType) \ RetType Class::Member(Class *, ArgType ArgName) #define IMPL_STATIC_LINK_NOARG(Class, Member, ArgType, RetType) \ RetType Class::Member(Class *, ArgType) // From workdir/UnpackedTarball/cppunit/include/cppunit/plugin/TestPlugIn.h #define CPPUNIT_PLUGIN_IMPLEMENT() // From workdir/UnpackedTarball/cppunit/include/cppunit/extensions/HelperMacros.h // To allow searching for the test names, where they are defined using the macros #define CPPUNIT_TEST_FIXTURE(TestClass, TestName) \ class TestName : public TestClass \ { \ public: \ void TestBody(); \ }; \ void TestName::TestBody() cib/libreoffice-6-3'>distro/cib/libreoffice-6-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-01-25 17:49:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-01-26 08:01:42 +0100
commit51b5b93092d6231615de470c62494c24e54828a1 (patch)
tree7d1556d834a9f61e0f40f29f318c57328cba67e7
parentb9fe4f26eaf1099b8d0907b8d9cbf52c86914466 (diff)
remove some unused local vars
found by a more aggressive variant of loplugin:unusedvariables. This is my first pass, committing the simplest and most obviously unnecessary vars Change-Id: I9676a6e39a101937097788548764506c93811c57 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87414 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat
-rw-r--r--bridges/source/jni_uno/jni_data.cxx1
-rw-r--r--connectivity/source/drivers/flat/ETable.cxx1
-rw-r--r--dbaccess/source/ui/misc/UITools.cxx1
-rw-r--r--dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx1
-rw-r--r--embeddedobj/source/msole/olevisual.cxx3
-rw-r--r--filter/source/config/cache/filterfactory.cxx2
-rw-r--r--io/source/stm/omark.cxx4
-rw-r--r--oox/source/export/shapes.cxx1
-rw-r--r--oox/source/shape/ShapeContextHandler.cxx2
-rw-r--r--package/source/manifest/ManifestImport.cxx1
-rw-r--r--sax/source/expatwrap/sax_expat.cxx1
-rw-r--r--sc/source/core/data/documen5.cxx1
-rw-r--r--sc/source/filter/excel/excrecds.cxx1
-rw-r--r--sc/source/filter/excel/xeformula.cxx1
-rw-r--r--sc/source/ui/view/dbfunc.cxx1
-rw-r--r--sd/source/filter/html/htmlattr.cxx2
-rw-r--r--sd/source/filter/xml/sdxmlwrp.cxx1
-rw-r--r--sd/source/ui/animations/SlideTransitionPane.cxx1
-rw-r--r--sd/source/ui/dlg/PhotoAlbumDialog.cxx1
-rw-r--r--sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx1
-rw-r--r--sdext/source/presenter/PresenterNotesView.cxx9
-rw-r--r--sdext/source/presenter/PresenterToolBar.cxx1
-rw-r--r--sfx2/source/dialog/versdlg.cxx1
-rw-r--r--sfx2/source/doc/doctemplates.cxx2
-rw-r--r--slideshow/source/engine/opengl/TransitionImpl.cxx2
-rw-r--r--slideshow/source/engine/slide/shapemanagerimpl.cxx1
-rw-r--r--svx/source/dialog/imapwnd.cxx2
-rw-r--r--svx/source/dialog/rubydialog.cxx1
-rw-r--r--svx/source/form/formcontroller.cxx1
-rw-r--r--svx/source/gallery2/galtheme.cxx1