1*bae3752eSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*bae3752eSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*bae3752eSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*bae3752eSAndrew Rist  * distributed with this work for additional information
6*bae3752eSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*bae3752eSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*bae3752eSAndrew Rist  * "License"); you may not use this file except in compliance
9*bae3752eSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*bae3752eSAndrew Rist  *
11*bae3752eSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*bae3752eSAndrew Rist  *
13*bae3752eSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*bae3752eSAndrew Rist  * software distributed under the License is distributed on an
15*bae3752eSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*bae3752eSAndrew Rist  * KIND, either express or implied.  See the License for the
17*bae3752eSAndrew Rist  * specific language governing permissions and limitations
18*bae3752eSAndrew Rist  * under the License.
19*bae3752eSAndrew Rist  *
20*bae3752eSAndrew Rist  *************************************************************/
21*bae3752eSAndrew Rist 
22*bae3752eSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_unotools.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef INCLUDE_CONFIGITEMS_HISTORYOPTIONS_CONST_HXX
28cdf0e10cSrcweir #define INCLUDE_CONFIGITEMS_HISTORYOPTIONS_CONST_HXX
29cdf0e10cSrcweir 
30cdf0e10cSrcweir #include <rtl/ustring.hxx>
31cdf0e10cSrcweir 
32cdf0e10cSrcweir namespace
33cdf0e10cSrcweir {
34cdf0e10cSrcweir 	static const ::rtl::OUString s_sCommonHistory     = ::rtl::OUString::createFromAscii("org.openoffice.Office.Common/History");
35cdf0e10cSrcweir 	static const ::rtl::OUString s_sHistories         = ::rtl::OUString::createFromAscii("org.openoffice.Office.Histories/Histories");
36cdf0e10cSrcweir 	static const ::rtl::OUString s_sPickListSize      = ::rtl::OUString::createFromAscii("PickListSize");
37cdf0e10cSrcweir 	static const ::rtl::OUString s_sURLHistorySize    = ::rtl::OUString::createFromAscii("Size");
38cdf0e10cSrcweir 	static const ::rtl::OUString s_sHelpBookmarksSize = ::rtl::OUString::createFromAscii("HelpBookmarkSize");
39cdf0e10cSrcweir 	static const ::rtl::OUString s_sPickList          = ::rtl::OUString::createFromAscii("PickList");
40cdf0e10cSrcweir 	static const ::rtl::OUString s_sURLHistory        = ::rtl::OUString::createFromAscii("URLHistory");
41cdf0e10cSrcweir 	static const ::rtl::OUString s_sHelpBookmarks     = ::rtl::OUString::createFromAscii("HelpBookmarks");
42cdf0e10cSrcweir 	static const ::rtl::OUString s_sItemList          = ::rtl::OUString::createFromAscii("ItemList");
43cdf0e10cSrcweir 	static const ::rtl::OUString s_sOrderList         = ::rtl::OUString::createFromAscii("OrderList");
44cdf0e10cSrcweir 	static const ::rtl::OUString s_sHistoryItemRef    = ::rtl::OUString::createFromAscii("HistoryItemRef");
45cdf0e10cSrcweir 	static const ::rtl::OUString s_sURL               = ::rtl::OUString::createFromAscii("URL");
46cdf0e10cSrcweir 	static const ::rtl::OUString s_sFilter            = ::rtl::OUString::createFromAscii("Filter");
47cdf0e10cSrcweir 	static const ::rtl::OUString s_sTitle             = ::rtl::OUString::createFromAscii("Title");
48cdf0e10cSrcweir 	static const ::rtl::OUString s_sPassword          = ::rtl::OUString::createFromAscii("Password");
49cdf0e10cSrcweir }
50cdf0e10cSrcweir 
51cdf0e10cSrcweir #endif //  INCLUDE_CONFIGITEMS_HISTORYOPTIONS_CONST_HXX
52