framework/IwyuFilter_framework.yaml |    2 --
 sc/IwyuFilter_sc.yaml               |    1 -
 2 files changed, 3 deletions(-)

New commits:
commit a9bdf3adf3292f6eff94f6c373c5336992c15ed5
Author:     Justin Luth <justin.l...@collabora.com>
AuthorDate: Mon Jun 17 13:26:14 2024 -0400
Commit:     Gabor Kelemen <gabor.kelemen.ext...@allotropia.de>
CommitDate: Mon Jun 24 10:12:32 2024 +0200

    NFC cleanup duplicate entry in sc/IwyuFilter_sc.yaml #2
    
    found by sed -i  -f ref.sed */*.yaml
    --------------------ref.sed --------------------
    {
    N;
    s#\([^
]*
\)##g;
    P;
    D;
    }
    ------------------------------------------------
    
    meaning: by default it reads in one line from the file
    then the N; command says "add a 
 and read in the next line
        which leaves a one-line pattern containing 2 lines separated by 

    then search for line1
 repeated 
    and replace with .
    
    likely nothing has happened, so P; print up to the first 
 (aka line1)
        so that we don't lose that line
    D; delete up to the first 

        so that it isn't in the pattern buffer any more,
        and next search starts line2
    and then repeat.
    
    Change-Id: Ib5d38af77568f59f36083f5348762d852acaa3e8
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169047
    Reviewed-by: Justin Luth <jl...@mail.com>
    Tested-by: Jenkins

diff --git a/sc/IwyuFilter_sc.yaml b/sc/IwyuFilter_sc.yaml
index 26bfc8f392b0..cf98aaffb989 100644
--- a/sc/IwyuFilter_sc.yaml
+++ b/sc/IwyuFilter_sc.yaml
@@ -257,7 +257,6 @@ excludelist:
     - com/sun/star/beans/XPropertySet.hpp
     - com/sun/star/chart2/data/DataSequenceRole.hpp
     - com/sun/star/chart2/data/XDataSequence.hpp
-    - com/sun/star/chart2/data/XDataSequence.hpp
     - com/sun/star/chart2/data/XNumericalDataSequence.hpp
     - com/sun/star/chart2/data/XTextualDataSequence.hpp
     - com/sun/star/lang/XServiceInfo.hpp
commit 160ef8e6c3161ba99ee72f2ab8be91a539b7dc0e
Author:     Justin Luth <justin.l...@collabora.com>
AuthorDate: Mon Jun 17 13:09:36 2024 -0400
Commit:     Gabor Kelemen <gabor.kelemen.ext...@allotropia.de>
CommitDate: Mon Jun 24 10:12:21 2024 +0200

    NFC cleanup duplicate entry in framework/IwyuFilter_framework.yaml
    
    found by sed -i  -f ref.sed */*.yaml
    --------------------ref.sed --------------------
    {
    N;
    N;
    N;
    s#\([^
]*
\)\([^
]*\)
##g;
    P;
    D;
    }
    ------------------------------------------------
    
    meaning: by default it reads in one line from the file
    then the 3 N; commands say "add a 
 and read in the next line
        which leaves a one-line pattern containing 4 lines separated by 

    then search for line1
line2
 repeated 
    and replace with .
    
    likely nothing has happened, so P; print up to the first 
 (aka line1)
        so that we don't lose that line
    D; delete up to the first 

        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.ext...@allotropia.de>
    Reviewed-by: Justin Luth <jl...@mail.com>

diff --git a/framework/IwyuFilter_framework.yaml 
b/framework/IwyuFilter_framework.yaml
index 3d69d4315137..c18fd72cbcf3 100644
--- a/framework/IwyuFilter_framework.yaml
+++ b/framework/IwyuFilter_framework.yaml
@@ -7,8 +7,6 @@ excludelist:
     framework/inc/services/layoutmanager.hxx:
     #  Don't propose hxx -> h change in URE libs
     - cppuhelper/interfacecontainer.hxx
-    #  Don't propose hxx -> h change in URE libs
-    - cppuhelper/interfacecontainer.hxx
     framework/inc/uielement/statusbarmanager.hxx:
     #  Don't propose hxx -> h change in URE libs
     - cppuhelper/interfacecontainer.hxx

Reply via email to