diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2013-03-09 12:43:33 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2013-03-12 11:36:55 +0100 |
commit | 12b6382ee9cd8f60ca0f1070940058b80cfcf706 (patch) | |
tree | 2718311ec7729859c44e2d87814ed83a0cccbdac /l10ntools | |
parent | 7062b4e0dfcf09a00dea19e62d0aa6c07c2ec34a (diff) |
l10ntools: these are not public headers
Change-Id: Ia9630c1ff60a00cd8286e99f61aacd27891f65e0
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/Module_l10ntools.mk | 1 | ||||
-rw-r--r-- | l10ntools/Package_inc.mk | 33 | ||||
-rw-r--r-- | l10ntools/inc/directory.hxx (renamed from l10ntools/inc/l10ntools/directory.hxx) | 2 | ||||
-rw-r--r-- | l10ntools/inc/export.hxx | 2 | ||||
-rw-r--r-- | l10ntools/inc/file.hxx (renamed from l10ntools/inc/l10ntools/file.hxx) | 0 | ||||
-rw-r--r-- | l10ntools/source/directory.cxx | 2 | ||||
-rw-r--r-- | l10ntools/source/file.cxx | 2 |
7 files changed, 4 insertions, 38 deletions
diff --git a/l10ntools/Module_l10ntools.mk b/l10ntools/Module_l10ntools.mk index 2982fd6d6692..fa47bf5397d2 100644 --- a/l10ntools/Module_l10ntools.mk +++ b/l10ntools/Module_l10ntools.mk @@ -39,7 +39,6 @@ $(eval $(call gb_Module_add_targets,l10ntools,\ Executable_treex \ Executable_stringex \ StaticLibrary_transex \ - Package_inc \ Package_ulfconv \ )) diff --git a/l10ntools/Package_inc.mk b/l10ntools/Package_inc.mk deleted file mode 100644 index dc7b32ef2995..000000000000 --- a/l10ntools/Package_inc.mk +++ /dev/null @@ -1,33 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# Version: MPL 1.1 / GPLv3+ / LGPLv3+ -# -# The contents of this file are subject to the Mozilla Public License Version -# 1.1 (the "License"); you may not use this file except in compliance with -# the License or as specified alternatively below. You may obtain a copy of -# the License at http://www.mozilla.org/MPL/ -# -# Software distributed under the License is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# Major Contributor(s): -# Copyright (C) 2012 David Ostrovsky <d.ostrovsky@gmx.de> (initial developer) -# -# All Rights Reserved. -# -# For minor contributions see the git repository. -# -# Alternatively, the contents of this file may be used under the terms of -# either the GNU General Public License Version 3 or later (the "GPLv3+"), or -# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), -# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable -# instead of those above. - -$(eval $(call gb_Package_Package,l10ntools_inc,$(SRCDIR)/l10ntools)) - -$(eval $(call gb_Package_add_file,l10ntools_inc,inc/l10ntools/export.hxx,inc/export.hxx)) -$(eval $(call gb_Package_add_file,l10ntools_inc,inc/l10ntools/directory.hxx,inc/l10ntools/directory.hxx)) -$(eval $(call gb_Package_add_file,l10ntools_inc,inc/l10ntools/file.hxx,inc/l10ntools/file.hxx)) - -# vim: set noet sw=4 ts=4: diff --git a/l10ntools/inc/l10ntools/directory.hxx b/l10ntools/inc/directory.hxx index ad192ec7dc55..2e6da89322bd 100644 --- a/l10ntools/inc/l10ntools/directory.hxx +++ b/l10ntools/inc/directory.hxx @@ -32,7 +32,7 @@ #ifndef L10NTOOLS_FILE_HXX #define L10NTOOLS_FILE_HXX -#include <l10ntools/file.hxx> +#include "file.hxx" #endif namespace transex{ diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx index 3e012784c3b1..409e6169b904 100644 --- a/l10ntools/inc/export.hxx +++ b/l10ntools/inc/export.hxx @@ -27,7 +27,7 @@ #ifndef L10NTOOLS_DIRECTORY_HXX #define L10NTOOLS_DIRECTORY_HXX -#include <l10ntools/directory.hxx> +#include "directory.hxx" #endif #include <osl/file.hxx> diff --git a/l10ntools/inc/l10ntools/file.hxx b/l10ntools/inc/file.hxx index 8c900ddd333f..8c900ddd333f 100644 --- a/l10ntools/inc/l10ntools/file.hxx +++ b/l10ntools/inc/file.hxx diff --git a/l10ntools/source/directory.cxx b/l10ntools/source/directory.cxx index 0571f5eb8f9b..9f6d73c59add 100644 --- a/l10ntools/source/directory.cxx +++ b/l10ntools/source/directory.cxx @@ -23,7 +23,7 @@ #include <windows.h> #endif -#include <l10ntools/directory.hxx> +#include "directory.hxx" #include <rtl/ustring.hxx> #include <iostream> #include <vector> diff --git a/l10ntools/source/file.cxx b/l10ntools/source/file.cxx index be4fdde8c687..9f8c0039a2ff 100644 --- a/l10ntools/source/file.cxx +++ b/l10ntools/source/file.cxx @@ -18,7 +18,7 @@ */ -#include <l10ntools/file.hxx> +#include "file.hxx" namespace transex { |