# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # 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/. # $(eval $(call gb_Library_Library,propertyhdl_x64)) $(eval $(call gb_Library_set_x64,propertyhdl_x64,YES)) $(eval $(call gb_Library_use_custom_headers,propertyhdl_x64,\ shell/source \ )) $(eval $(call gb_Library_set_include,propertyhdl_x64,\ -I$(SRCDIR)/shell/inc \ $$(INCLUDE) \ )) $(eval $(call gb_Library_add_defs,propertyhdl_x64,\ -DISOLATION_AWARE_ENABLED \ -DWIN32_LEAN_AND_MEAN \ -UNOMINMAX \ )) $(eval $(call gb_Library_use_externals,propertyhdl_x64,\ expat_x64 \ zlib_x64 \ )) $(eval $(call gb_Library_use_system_win32_libs,propertyhdl_x64,\ advapi32 \ comctl32 \ gdi32 \ gdiplus \ kernel32 \ msvcprt \ msvcrt \ oldnames \ ole32 \ oleaut32 \ propsys \ shell32 \ shlwapi \ user32 \ uuid \ )) $(eval $(call gb_Library_use_static_libraries,propertyhdl_x64,\ shell_xmlparser_x64 \ shlxthandler_common_x64 \ )) $(eval $(call gb_Library_add_ldflags,propertyhdl_x64,\ /DEF:$(SRCDIR)/shell/source/win32/shlxthandler/prophdl/propertyhdl.def \ /NODEFAULTLIB:libcmt.lib \ )) $(eval $(call gb_Library_add_x64_generated_exception_objects,propertyhdl_x64,\ CustomTarget/shell/source/win32/shlxthandler/prophdl/propertyhdl \ )) # vim: set shiftwidth=4 tabstop=4 noexpandtab: 7166cf87d398072607c13 Reviewed-on: https://gerrit.libreoffice.org/67473 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Found with bin/find-unneeded-includes
Only removal proposals are dealt with here.

Change-Id: I0eebd82b96d630da0597166cf87d398072607c13
Reviewed-on: https://gerrit.libreoffice.org/67473
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
clang-tidy: (WIP) bugprone-too-small-loop-variable findings 2 2018-11-10T22:11:28+00:00 Tamás Zolnai tamas.zolnai@collabora.com 2018-11-10T16:34:31+00:00 afbfe42e63cdba1a18c292d7eb4875009b0f19c0 Change-Id: I1ddf3fe0e5fad265ae14712a23469b684253079d Reviewed-on: https://gerrit.libreoffice.org/63241 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Change-Id: I1ddf3fe0e5fad265ae14712a23469b684253079d
Reviewed-on: https://gerrit.libreoffice.org/63241
Tested-by: Jenkins
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
remove more rtl::OUString and OString prefixes 2018-10-24T12:43:34+00:00 Noel Grandin noel.grandin@collabora.co.uk 2018-10-23T10:06:00+00:00 6f50961e69406a17d6ec998956a6b33208b1001b which seem to have snuck back in since the great rounds of removals. Change-Id: I85f7f5f4801c0b48dae8b50f51f83595b286d6a1 Reviewed-on: https://gerrit.libreoffice.org/62229 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
which seem to have snuck back in since the great rounds of removals.

Change-Id: I85f7f5f4801c0b48dae8b50f51f83595b286d6a1
Reviewed-on: https://gerrit.libreoffice.org/62229
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
a whole bunch of SAL_WARN_UNUSED 2017-01-31T05:32:03+00:00 Noel Grandin noel.grandin@collabora.co.uk 2017-01-27T12:41:46+00:00 2670ca3fc597decae78499d1397539668eb84e5e Change-Id: Iea28debc7d3abc58cca21bd3856cb65b321dc1e6 Reviewed-on: https://gerrit.libreoffice.org/33693 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Change-Id: Iea28debc7d3abc58cca21bd3856cb65b321dc1e6
Reviewed-on: https://gerrit.libreoffice.org/33693
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
cppuhelper: fix loplugin:cppunitassertequals warnings 2016-09-09T08:23:44+00:00 Miklos Vajna vmiklos@collabora.co.uk 2016-09-09T07:18:57+00:00 b3c72c734087b178cbcf1622e1088335c6eaf6a7 Change-Id: Ia7c3de84b8001a30dbe1863be58a9639167cfa11 Reviewed-on: https://gerrit.libreoffice.org/28760 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Change-Id: Ia7c3de84b8001a30dbe1863be58a9639167cfa11
Reviewed-on: https://gerrit.libreoffice.org/28760
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
remove unnecessary use of void in function declarations 2015-04-15T09:47:12+00:00 Noel Grandin noel@peralex.com 2015-04-14T10:44:47+00:00 71b809959bb8f775d83dc52628448bb8b8322b28 ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
ie.
    void f(void);
becomes
    void f();

I used the following command to make the changes:

  git grep -lP '\(\s*void\s*\)' -- *.cxx \
    | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;'

and ran it for both .cxx and .hxx files.

Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
Removed duplicated includes 2014-10-31T16:18:30+00:00 Andrea Gelmini andrea.gelmini@gelma.net 2014-10-31T06:39:30+00:00 c70f1545e2df5818f251b558dcc64a83d3c270d3 Change-Id: I5362d997bfa086c9fb1726efcb15132a966684f6 Reviewed-on: https://gerrit.libreoffice.org/12160 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Change-Id: I5362d997bfa086c9fb1726efcb15132a966684f6
Reviewed-on: https://gerrit.libreoffice.org/12160
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>