diff options
author | Chris Laplante <mostthingsweb@gmail.com> | 2014-05-16 15:05:42 -0400 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-20 07:24:55 -0500 |
commit | eff1d991de77700505ce18dfaaa3e01d76551ffd (patch) | |
tree | 90f07f638c194b65b7d1a7f5b8133b5c53a67d7a | |
parent | a092418f300f15fd1e2203b6933cfb1f69c107ad (diff) |
Move #include from middle of file to top
Change-Id: I715f606ee0f94e9ffd3ef9ec889948a56a9cdc19
Reviewed-on: https://gerrit.libreoffice.org/9381
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/source/fontsubset/xlat.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/fontsubset/xlat.cxx b/vcl/source/fontsubset/xlat.cxx index 56b4e2432f9e..3509ada02af1 100644 --- a/vcl/source/fontsubset/xlat.cxx +++ b/vcl/source/fontsubset/xlat.cxx @@ -18,6 +18,7 @@ */ #include "rtl/textcvt.h" +#include "xlat.hxx" #include <tools/debug.hxx> namespace { @@ -138,8 +139,6 @@ void ConverterCache::convertStr( int nSelect, const sal_Unicode* pSrc, sal_uInt1 } // anonymous namespace -#include "xlat.hxx" - namespace vcl { |