# -*- 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_WinResTarget_WinResTarget,sbase/launcher)) $(eval $(call gb_WinResTarget_set_include,sbase/launcher,\ $$(INCLUDE) \ -I$(SRCDIR)/sysui/desktop \ )) $(eval $(call gb_WinResTarget_add_defs,sbase/launcher,\ -DRES_APP_NAME=sbase \ -DRES_APP_FILEDESC="$(PRODUCTNAME) Base" \ -DRES_APP_ICON=icons/base_app.ico \ -DVERVARIANT=$(LIBO_VERSION_PATCH) \ -DRES_APP_VENDOR="$(OOO_VENDOR)" \ )) $(eval $(call gb_WinResTarget_add_dependencies,sbase/launcher,\ sysui/desktop/icons/base_app.ico \ )) $(eval $(call gb_WinResTarget_set_rcfile,sbase/launcher,desktop/win32/source/applauncher/launcher)) # vim: set ts=4 sw=4 et: 00 fed145be5231c3045098e5a0942f0b9d3c229460 (the original ones would never have been picked due to how template argument deduction works) Change-Id: I5a08c763d721d8e11b5a10af2344a6a24bb0b9b2 Reviewed-on: https://gerrit.libreoffice.org/18583 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
(the original ones would never have been picked due to how template argument
deduction works)

Change-Id: I5a08c763d721d8e11b5a10af2344a6a24bb0b9b2
Reviewed-on: https://gerrit.libreoffice.org/18583
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Revert "create a macro to tidy up the declaration sites of o3tl::typed_flags_set" 2015-08-26T06:26:51+00:00 Noel Grandin noel@peralex.com 2015-08-25T09:24:15+00:00 a05d6ac2a2a97081c6e9af1f9c8137fd91e739b6 sberg did not like this macro, let's see if I can find a better solution. This reverts commit e51fa143587d018b75db08e60cf27ff932b1cf8d.
sberg did not like this macro, let's see if I can find a better
solution.

This reverts commit e51fa143587d018b75db08e60cf27ff932b1cf8d.
create a macro to tidy up the declaration sites of o3tl::typed_flags_set 2015-07-15T23:40:19+00:00 Noel Grandin noel@peralex.com 2015-05-22T13:23:50+00:00 e51fa143587d018b75db08e60cf27ff932b1cf8d Change-Id: Ifb8fd4fd5128188420f1dfda6b6f695160d5e77a Reviewed-on: https://gerrit.libreoffice.org/15865 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Change-Id: Ifb8fd4fd5128188420f1dfda6b6f695160d5e77a
Reviewed-on: https://gerrit.libreoffice.org/15865
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
fdo#84938: replace MOUSE_ modifier constants with enum 2014-11-07T12:53:36+00:00 Noel Grandin noel@peralex.com 2014-11-07T10:30:39+00:00 31d902d3c00fdc5f088aff433b7ebf308a718339 and make the two categories of constants non-overlapping, we really don't need to risk confusion in order to save 6 bits in a data structure like this. Change-Id: I2251195d8e45ed04e2a89e47ae9c3e52cf0475c0
and make the two categories of constants non-overlapping, we
really don't need to risk confusion in order to save 6 bits in
a data structure like this.

Change-Id: I2251195d8e45ed04e2a89e47ae9c3e52cf0475c0
bug in typed flags 2014-11-07T12:53:36+00:00 Noel Grandin noel@peralex.com 2014-11-06T12:58:23+00:00 adaf5229afa37331da6fac2c4711494f53a2e067 /home/noel/libo2/o3tl/qa/test-typed_flags.cxx:50:52: error: invalid argument type 'typename o3tl::typed_flags<ConfigurationChangedHint>::Wrap' to unary expression ConfigurationChangedHint nHint2 = nHint & ~(ConfigurationChangedHint::ONE | ConfigurationChangedHint::TWO); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. Change-Id: Ia03e1e7d6afff0bdbb87e82ec076d5ffb820afb2
/home/noel/libo2/o3tl/qa/test-typed_flags.cxx:50:52:
error: invalid argument type 'typename o3tl::typed_flags<ConfigurationChangedHint>::Wrap' to unary expression
ConfigurationChangedHint nHint2  = nHint & ~(ConfigurationChangedHint::ONE | ConfigurationChangedHint::TWO);
                                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.

Change-Id: Ia03e1e7d6afff0bdbb87e82ec076d5ffb820afb2
need explicit bool conversions here 2014-10-14T12:36:44+00:00 Noel Grandin noel@peralex.com 2014-10-14T12:36:44+00:00 9a5e03b8c9d422de43e899e3f880a03dc5c50d84 to make some tinderboxes happy Change-Id: I136895674cec8eda874acda0bf5c7a96b3a22778
to make some tinderboxes happy

Change-Id: I136895674cec8eda874acda0bf5c7a96b3a22778
fixes and tests for o3tl::typed_flags 2014-10-14T11:01:43+00:00 Noel Grandin noel@peralex.com 2014-10-14T08:36:45+00:00 2cd1128555cec70b6ba3d977f6a156b2be1659ad create test suite for typed_flags template. fix the operator&= and operator|= definitions Signed-off-by: Stephan Bergmann <sbergman@redhat.com> Conflicts: include/o3tl/typed_flags_set.hxx Change-Id: I1df9ae197889af98a2fd76ff2bc07756c7b14ced
create test suite for typed_flags template.
fix the operator&= and operator|= definitions

Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Conflicts:
	include/o3tl/typed_flags_set.hxx

Change-Id: I1df9ae197889af98a2fd76ff2bc07756c7b14ced