office-gobmx/framework
Justin Luth 160ef8e6c3 NFC cleanup duplicate entry in framework/IwyuFilter_framework.yaml
found by sed -i  -f ref.sed */*.yaml
--------------------ref.sed --------------------
{
N;
N;
N;
s#\([^\n]*\n\)\([^\n]*\)\n\1\2#\1\2#g;
P;
D;
}
------------------------------------------------

meaning: by default it reads in one line from the file
then the 3 N; commands say "add a \n and read in the next line
    which leaves a one-line pattern containing 4 lines separated by \n
then search for line1\nline2\n repeated \1\2
and replace with \1\2.

likely nothing has happened, so P; print up to the first \n (aka line1)
    so that we don't lose that line
D; delete up to the first \n
    so that it isn't in the pattern buffer any more,
    and next search starts line2
and then repeat.
    Note that the pattern gets rather huge
    because while we only remove one line at a time,
    we unnecessarily append 3 more lines (instead of just one).
    But that doesn't seem to cause the search to fail...

Change-Id: I440bca873483dc7f1716881113807fe121fe6a4c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169045
Tested-by: Jenkins
Reviewed-by: Gabor Kelemen <gabor.kelemen.extern@allotropia.de>
Reviewed-by: Justin Luth <jluth@mail.com>
2024-06-24 10:12:21 +02:00
..
dtd
inc loplugin:unusedmethods 2024-06-20 12:21:54 +02:00
qa loplugin:ostr in various 2024-06-18 13:16:23 +02:00
source loplugin:unusedmethods 2024-06-20 12:21:54 +02:00
uiconfig/startmodule/menubar Align macro menu in start center with other places 2022-05-01 09:58:08 +02:00
util WASM --enable-wasm-strip now skips lots of LO code 2022-01-20 12:28:54 +01:00
AllLangMoTarget_fwk.mk
CppunitTest_framework_CheckXTitle.mk Port framework/qa/complex/XTitle/CheckXTile.java to Cppunit 2024-06-04 09:11:39 +02:00
CppunitTest_framework_dispatch.mk CppunitTest_framework_dispatch: inherit from UnoApiTest 2022-11-22 13:24:58 +01:00
CppunitTest_framework_loadenv.mk CppunitTest_framework_loadenv: inherit from UnoApiTest 2022-11-22 14:32:40 +01:00
CppunitTest_framework_services.mk CppunitTest_framework_services: inherit from UnoApiTest 2022-11-22 14:52:43 +01:00
IwyuFilter_framework.yaml NFC cleanup duplicate entry in framework/IwyuFilter_framework.yaml 2024-06-24 10:12:21 +02:00
JunitTest_framework_complex.mk Port framework/qa/complex/XTitle/CheckXTile.java to Cppunit 2024-06-04 09:11:39 +02:00
JunitTest_framework_unoapi.mk
Library_fwk.mk WASM --enable-wasm-strip now skips lots of LO code 2022-01-20 12:28:54 +01:00
Makefile
Module_framework.mk Revert "framework/qa/complex/dispatches/checkdispatchapi.java to CppUnit" 2024-06-07 15:02:21 +02:00
Package_dtd.mk
README.md
UIConfig_startmodule.mk

UNO Framework

Toolbars, menus, UNO stuff, including accelerators and interaction, etc.

See Also

http://wiki.openoffice.org/wiki/Framework