android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / filter / ww8 / fields.hxx
blobd11b92e2ad5b876075df123e872699d6612a4d85
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 /// @HTML
21 #ifndef INCLUDED_SW_SOURCE_FILTER_WW8_FIELDS_HXX
22 #define INCLUDED_SW_SOURCE_FILTER_WW8_FIELDS_HXX
24 #include <filter/msfilter/ww8fields.hxx>
26 namespace ww
28 /** Find the English Field Name from a winword index
30 See OpenOffice.org issue 12831
31 (https://bz.apache.org/ooo/show_bug.cgi?id=12831) and MS
32 Knowledge Base article 268717
33 (http://support.microsoft.com/default.aspx?scid=kb;en-us;268717) for
34 details of why to use english field names and not localized ones since
35 Word 2000.
37 @param
38 nIndex the index to search for
40 @return 0 if not found, otherwise the fieldname as a C style ASCII
41 string
43 const char* GetEnglishFieldName(eField eIndex) noexcept;
46 #endif
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */