[Libreoffice-commits] core.git: sal/qa sal/textenc sax/inc scripting/source

Jens Carl j.carl43 at gmx.de
Sun Jun 1 09:08:04 PDT 2014


 sal/qa/inc/valueequal.hxx                                 |    5 +++++
 sal/textenc/convertisciidevangari.hxx                     |    5 +++++
 sax/inc/xml2utf.hxx                                       |    5 +++++
 scripting/source/dlgprov/DialogModelProvider.hxx          |    6 ++++++
 scripting/source/provider/BrowseNodeFactoryImpl.hxx       |    5 +++++
 scripting/source/provider/MasterScriptProviderFactory.hxx |    6 ++++++
 6 files changed, 32 insertions(+)

New commits:
commit f3e1f476e9cffb75d0620ab2dcfdc1ea077cd9d3
Author: Jens Carl <j.carl43 at gmx.de>
Date:   Fri May 30 21:07:48 2014 +0000

    fdo#68849: Add header guards to all include files
    
    Added header guards to files in directories sal/, sal/, and scripting/
    
    Change-Id: Ieb7f224f2d27bd671618c516f47f5b7f08c1d294
    Reviewed-on: https://gerrit.libreoffice.org/9582
    Reviewed-by: Thomas Arnhold <thomas at arnhold.org>
    Tested-by: Thomas Arnhold <thomas at arnhold.org>

diff --git a/sal/qa/inc/valueequal.hxx b/sal/qa/inc/valueequal.hxx
index 563314d..0a11a2a 100644
--- a/sal/qa/inc/valueequal.hxx
+++ b/sal/qa/inc/valueequal.hxx
@@ -17,6 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#ifndef INCLUDED_SAL_QA_INC_VALUEEQUAL_HXX
+#define INCLUDED_SAL_QA_INC_VALUEEQUAL_HXX
+
 #include <sal/config.h>
 
 #include <math.h>
@@ -114,4 +117,6 @@ bool is_double_equal(double x, double y)
     return is_equal<double>(x, y, PREC_double);
 }
 
+#endif // INCLUDED_SAL_QA_INC_VALUEEQUAL_HXX
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sal/textenc/convertisciidevangari.hxx b/sal/textenc/convertisciidevangari.hxx
index b3f5f30..89aeeae 100644
--- a/sal/textenc/convertisciidevangari.hxx
+++ b/sal/textenc/convertisciidevangari.hxx
@@ -7,6 +7,9 @@
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
 
+#ifndef INCLUDED_SAL_TEXTENC_CONVERTISCIIDEVANGARI_HXX
+#define INCLUDED_SAL_TEXTENC_CONVERTISCIIDEVANGARI_HXX
+
 #include <sal/types.h>
 
 sal_Size ImplConvertIsciiDevanagariToUnicode(void const * pData,
@@ -31,4 +34,6 @@ void ImplResetUnicodeToIsciiDevanagariContext(void * pContext);
 
 void ImplDestroyUnicodeToIsciiDevanagariContext(void * pContext);
 
+#endif // INCLUDED_SAL_TEXTENC_CONVERTISCIIDEVANGARI_HXX
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sax/inc/xml2utf.hxx b/sax/inc/xml2utf.hxx
index 0fa9fc7..526dd13 100644
--- a/sax/inc/xml2utf.hxx
+++ b/sax/inc/xml2utf.hxx
@@ -17,6 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#ifndef INCLUDED_SAX_INC_XML2UTF_HXX
+#define INCLUDED_SAX_INC_XML2UTF_HXX
+
 #include <sal/types.h>
 
 namespace sax_expatwrap {
@@ -131,4 +134,6 @@ private:
 };
 }
 
+#endif // INCLUDED_SAX_INC_XML2UTF_HXX
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/scripting/source/dlgprov/DialogModelProvider.hxx b/scripting/source/dlgprov/DialogModelProvider.hxx
index 87e7c4d..2a0696b 100644
--- a/scripting/source/dlgprov/DialogModelProvider.hxx
+++ b/scripting/source/dlgprov/DialogModelProvider.hxx
@@ -16,6 +16,10 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
+
+#ifndef INCLUDED_SCRIPTING_SOURCE_DLGPROV_DIALOGMODELPROVIDER_HXX
+#define INCLUDED_SCRIPTING_SOURCE_DLGPROV_DIALOGMODELPROVIDER_HXX
+
 #include "sal/config.h"
 #include "cppuhelper/factory.hxx"
 #include "cppuhelper/implbase4.hxx"
@@ -81,4 +85,6 @@ private:
 };
 } // closing anonymous implementation namespace
 
+#endif // INCLUDED_SCRIPTING_SOURCE_DLGPROV_DIALOGMODELPROVIDER_HXX
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/scripting/source/provider/BrowseNodeFactoryImpl.hxx b/scripting/source/provider/BrowseNodeFactoryImpl.hxx
index 4ceeecb..35dd242 100644
--- a/scripting/source/provider/BrowseNodeFactoryImpl.hxx
+++ b/scripting/source/provider/BrowseNodeFactoryImpl.hxx
@@ -17,6 +17,9 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 
+#ifndef INCLUDED_SCRIPTING_SOURCE_PROVIDER_BROWSENODEFACTORYIMPL_HXX
+#define INCLUDED_SCRIPTING_SOURCE_PROVIDER_BROWSENODEFACTORYIMPL_HXX
+
 #include <rtl/ustring.hxx>
 #include <cppuhelper/implbase2.hxx>
 
@@ -77,4 +80,6 @@ public:
 
 } // namespace browsenodefactory
 
+#endif // INCLUDED_SCRIPTING_SOURCE_PROVIDER_BROWSENODEFACTORYIMPL_HXX
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/scripting/source/provider/MasterScriptProviderFactory.hxx b/scripting/source/provider/MasterScriptProviderFactory.hxx
index 462a830..a732a84 100644
--- a/scripting/source/provider/MasterScriptProviderFactory.hxx
+++ b/scripting/source/provider/MasterScriptProviderFactory.hxx
@@ -16,6 +16,10 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
+
+#ifndef INCLUDED_SCRIPTING_SOURCE_PROVIDER_MASTERSCRIPTPROVIDERFACTORY_HXX
+#define INCLUDED_SCRIPTING_SOURCE_PROVIDER_MASTERSCRIPTPROVIDERFACTORY_HXX
+
 #include "rtl/ustring.hxx"
 #include "rtl/ref.hxx"
 #include <cppuhelper/implbase2.hxx>
@@ -74,4 +78,6 @@ public:
 
 } // namespace func_provider
 
+#endif // INCLUDED_SCRIPTING_SOURCE_PROVIDER_MASTERSCRIPTPROVIDERFACTORY_HXX
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


More information about the Libreoffice-commits mailing list