From 466257699559390237615f651ce0f30f07543434 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 14 Apr 2016 09:01:48 +0300 Subject: 149 Change-Id: I63f055756ff5f571d5ebe89aa4aee52d8ae2c510 --- Makefile.in | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index 251f70724350..d0c5757790db 100644 --- a/Makefile.in +++ b/Makefile.in @@ -9,7 +9,7 @@ gb_Top_MODULE_CHECK_TARGETS := slowcheck unitcheck subsequentcheck perfcheck -.PHONY : all bootstrap gbuild build build-non-l10n-only build-l10n-only check clean clean-build clean-host test-install distclean distro-pack-install docs download etags fetch findunusedcode get-submodules id install install-strip tags debugrun help showmodules translations packageinfo internal.clean $(gb_Top_MODULE_CHECK_TARGETS) +.PHONY : all check-if-root bootstrap gbuild build build-non-l10n-only build-l10n-only check clean clean-build clean-host test-install distclean distro-pack-install docs download etags fetch findunusedcode get-submodules id install install-strip tags debugrun help showmodules translations packageinfo internal.clean $(gb_Top_MODULE_CHECK_TARGETS) MAKECMDGOALS?=all build_goal:=$(if $(filter build check,$(MAKECMDGOALS)),all)\ @@ -50,7 +50,15 @@ $(BUILDDIR)/config_host.mk : $(wildcard \ else # MAKE_RESTARTS -all: build +all: check-if-root build + +check-if-root: + @if test `id -u` = 0; then \ + echo; \ + echo 'No. You make ME a sandwich.'; \ + echo; \ + exit 1; \ + fi gb_Side ?= host -- cgit libreoffice-6-0'>distro/cib/libreoffice-6-0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/toolkit/source/controls/tkscrollbar.cxx
diff options
context:
space:
mode:
authorOliver Specht <oliver.specht@cib.de>2024-06-13 14:49:16 +0200
committerThorsten Behrens <thorsten.behrens@allotropia.de>2024-07-30 22:42:11 +0200
commitf806fc136b3410ec9a1e09320d100c78b33c867b (patch)
tree6dfe83ace2253869f7409595034d58cdc9e801d4 /toolkit/source/controls/tkscrollbar.cxx
parent3b8aad9781654a392b973690fb62f69433366c58 (diff)
tdf#137335 calculate paragraph height in RTF/DOCX HEADmaster
TabStops and spaces are not included in height calculation of paragraphs in Word. With a compatibility option this is now also set in RTF import. But if spaces or/or tabstops are the only parts of a line their font size is taken into account. The fix 89e7341025b607491c90efdb74708e63d875c1e5%5E%21 from tdf#142404 has been removed because it broke formatting of follow lines. Change-Id: Id28488438462114bd54c4f8bd15e2ada606c4192 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168788 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>