diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-17 14:24:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-17 14:24:58 +0200 |
commit | be3d2309f0376914b0135046f95b0bb592cf5078 (patch) | |
tree | c3e7951b110471ea20c1be8fff8fa0e34409d440 /sw/qa | |
parent | 734cbb22a6829b6bd9db9ce8f52df4d260efbc6a (diff) |
other #includes should be AFTER the include-once #define
found with the following script:
git ls-files *.hxx | xargs perl -0777 -ne 'if
(/include.*
.*
.*
"; close ARGV }'
Change-Id: I3afb0e81eb315c34bc0eb6bb4733dd1f0537d5c0
Diffstat (limited to 'sw/qa')
-rw-r--r-- | sw/qa/extras/inc/bordertest.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/inc/bordertest.hxx b/sw/qa/extras/inc/bordertest.hxx index 111bae289356..5f948a206455 100644 --- a/sw/qa/extras/inc/bordertest.hxx +++ b/sw/qa/extras/inc/bordertest.hxx @@ -6,13 +6,13 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#ifndef INCLUDED_SW_QA_EXTRAS_INC_BORDERTEST_HXX +#define INCLUDED_SW_QA_EXTRAS_INC_BORDERTEST_HXX #include <com/sun/star/table/XCell.hpp> #include <com/sun/star/table/BorderLine.hpp> #include <com/sun/star/text/XTextTable.hpp> -#ifndef INCLUDED_SW_QA_EXTRAS_INC_BORDERTEST_HXX -#define INCLUDED_SW_QA_EXTRAS_INC_BORDERTEST_HXX typedef std::map<OUString, css::table::BorderLine> BorderLineMap; typedef std::pair<OUString, css::table::BorderLine> StringBorderPair; |