[Libreoffice-commits] core.git: idlc/source l10ntools/source unoidl/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Feb 28 08:30:27 UTC 2019


 idlc/source/scanner.l                  |    2 +-
 l10ntools/source/cfglex.l              |    8 ++++----
 l10ntools/source/xrmlex.l              |    8 ++++----
 unoidl/source/sourceprovider-scanner.l |   12 ++++++------
 4 files changed, 15 insertions(+), 15 deletions(-)

New commits:
commit 88156ea385e4d81c41a4a46157029671bb019751
Author:     Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Wed Feb 27 10:24:52 2019 +0100
Commit:     Stephan Bergmann <sbergman at redhat.com>
CommitDate: Thu Feb 28 09:30:01 2019 +0100

    loplugin:includeform
    
    Change-Id: Id2c44c104a417feba152d4af43caca561f3432bf
    Reviewed-on: https://gerrit.libreoffice.org/68465
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/idlc/source/scanner.l b/idlc/source/scanner.l
index a4137551701b..1ba611dc52ea 100644
--- a/idlc/source/scanner.l
+++ b/idlc/source/scanner.l
@@ -24,7 +24,7 @@
  * scanner.ll - Lexical scanner for IDLC 1.0
  */
 
-#include "sal/config.h"
+#include <sal/config.h>
 
 #include <stdlib.h>
 #include <string.h>
diff --git a/l10ntools/source/cfglex.l b/l10ntools/source/cfglex.l
index 50f22421a027..f5fc2280dfe2 100644
--- a/l10ntools/source/cfglex.l
+++ b/l10ntools/source/cfglex.l
@@ -23,7 +23,7 @@
  * lexer for parsing cfg source files
  */
 
-#include "sal/config.h"
+#include <sal/config.h>
 
 /* enlarge token buffer to tokenize whole strings */
 #undef YYLMAX
@@ -38,13 +38,13 @@
 #endif
 
 /* table of possible token ids */
-#include "tokens.h"
+#include <tokens.h>
 #include <stdlib.h>
 #include <stdio.h>
 
-#include "sal/main.h"
+#include <sal/main.h>
 
-#include "cfglex.hxx"
+#include <cfglex.hxx>
 
 #define YY_NO_UNISTD_H
 
diff --git a/l10ntools/source/xrmlex.l b/l10ntools/source/xrmlex.l
index 8ecd4c0cec78..c4d18337c5ad 100644
--- a/l10ntools/source/xrmlex.l
+++ b/l10ntools/source/xrmlex.l
@@ -23,7 +23,7 @@
  * lexer for parsing xml-property source files (*.xml)
  */
 
-#include "sal/config.h"
+#include <sal/config.h>
 
 /* enlarge token buffer to tokenize whole strings */
 #undef YYLMAX
@@ -38,12 +38,12 @@
 #endif
 
 /* table of possible token ids */
-#include "tokens.h"
-#include "xrmlex.hxx"
+#include <tokens.h>
+#include <xrmlex.hxx>
 #include <stdlib.h>
 #include <stdio.h>
 
-#include "sal/main.h"
+#include <sal/main.h>
 
 #define YY_NO_UNISTD_H
 
diff --git a/unoidl/source/sourceprovider-scanner.l b/unoidl/source/sourceprovider-scanner.l
index 014966a1c60e..29d594caf8e5 100644
--- a/unoidl/source/sourceprovider-scanner.l
+++ b/unoidl/source/sourceprovider-scanner.l
@@ -30,15 +30,15 @@
 
 %{
 
-#include "rtl/math.h"
-#include "rtl/string.hxx"
-#include "rtl/ustring.hxx"
-#include "rtl/textenc.h"
-#include "sal/types.h"
+#include <rtl/math.h>
+#include <rtl/string.hxx>
+#include <rtl/ustring.hxx>
+#include <rtl/textenc.h>
+#include <sal/types.h>
 #include <unoidl/unoidl.hxx>
 
 #include "sourceprovider-parser-requires.hxx"
-#include "sourceprovider-parser.hxx"
+#include <sourceprovider-parser.hxx>
 #include "sourceprovider-scanner.hxx"
 
 namespace unoidl { namespace detail {


More information about the Libreoffice-commits mailing list