[Libreoffice-commits] core.git: include/LibreOfficeKit

Stephan Bergmann sbergman at redhat.com
Thu Oct 19 21:05:43 UTC 2017


 include/LibreOfficeKit/LibreOfficeKit.hxx   |    4 ++--
 include/LibreOfficeKit/LibreOfficeKitInit.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit e19c4b54d129db356d44ede66aba51c789d2445f
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Oct 17 14:47:21 2017 +0200

    Consistently use #include <LibreOfficeKit/...> in include/LibreOfficeKit
    
    Some of the include files there had used
    
      #include "..."
    
    while others had used
    
      #include <LibreOfficeKit/...>
    
    for references among those include files.  In preparation for
    loplugin:includeform, consolidate on the latter (even if that's clearly a
    misuse of the <...> form).
    
    Change-Id: If142c844863e4e63b6fd8f2200732972860befd3
    Reviewed-on: https://gerrit.libreoffice.org/43558
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx b/include/LibreOfficeKit/LibreOfficeKit.hxx
index d4e891af218a..9e897c5ffb85 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.hxx
+++ b/include/LibreOfficeKit/LibreOfficeKit.hxx
@@ -12,8 +12,8 @@
 
 #include <cstddef>
 
-#include "LibreOfficeKit.h"
-#include "LibreOfficeKitInit.h"
+#include <LibreOfficeKit/LibreOfficeKit.h>
+#include <LibreOfficeKit/LibreOfficeKitInit.h>
 
 /*
  * The reasons this C++ code is not as pretty as it could be are:
diff --git a/include/LibreOfficeKit/LibreOfficeKitInit.h b/include/LibreOfficeKit/LibreOfficeKitInit.h
index f9610f1f02fc..9642411ce367 100644
--- a/include/LibreOfficeKit/LibreOfficeKitInit.h
+++ b/include/LibreOfficeKit/LibreOfficeKitInit.h
@@ -10,7 +10,7 @@
 #ifndef INCLUDED_LIBREOFFICEKIT_LIBREOFFICEKITINIT_H
 #define INCLUDED_LIBREOFFICEKIT_LIBREOFFICEKITINIT_H
 
-#include "LibreOfficeKit.h"
+#include <LibreOfficeKit/LibreOfficeKit.h>
 
 #ifdef __cplusplus
 extern "C"


More information about the Libreoffice-commits mailing list