diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-06 19:17:19 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-02-06 10:50:33 -0500 |
commit | e7b1c7954e159197ad414e8aff7e7a04c30da29c (patch) | |
tree | ef653cbcfbcadcca855f95b106aeea1f615ae92e /sc/source | |
parent | 9c8d87e46bba0eb9a3b8d923c6c630a359bf0f6c (diff) |
Re-order the header includes. Make sure column.hxx comes first.
Change-Id: I9f93724c4e0b565a9148d0893feda9e82109bff7
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/data/column.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index 4ee7923a13c1..fc22a5b1d4c5 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -17,15 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <map> - -#include <svl/poolcach.hxx> -#include <svl/zforlist.hxx> -#include <editeng/scripttypeitem.hxx> -#include <string.h> - -#include "scitems.hxx" #include "column.hxx" +#include "scitems.hxx" #include "cell.hxx" #include "document.hxx" #include "docpool.hxx" @@ -37,6 +30,13 @@ #include "detfunc.hxx" // for Notes in Sort/Swap #include "postit.hxx" +#include <svl/poolcach.hxx> +#include <svl/zforlist.hxx> +#include <editeng/scripttypeitem.hxx> + +#include <cstring> +#include <map> + using ::editeng::SvxBorderLine; using namespace formula; |