109a1d057SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
309a1d057SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
409a1d057SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
509a1d057SAndrew Rist  * distributed with this work for additional information
609a1d057SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
709a1d057SAndrew Rist  * to you under the Apache License, Version 2.0 (the
809a1d057SAndrew Rist  * "License"); you may not use this file except in compliance
909a1d057SAndrew Rist  * with the License.  You may obtain a copy of the License at
1009a1d057SAndrew Rist  *
1109a1d057SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
1209a1d057SAndrew Rist  *
1309a1d057SAndrew Rist  * Unless required by applicable law or agreed to in writing,
1409a1d057SAndrew Rist  * software distributed under the License is distributed on an
1509a1d057SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1609a1d057SAndrew Rist  * KIND, either express or implied.  See the License for the
1709a1d057SAndrew Rist  * specific language governing permissions and limitations
1809a1d057SAndrew Rist  * under the License.
1909a1d057SAndrew Rist  *
2009a1d057SAndrew Rist  *************************************************************/
2109a1d057SAndrew Rist 
22*97e8a929SArmin Le Grand // MARKER(update_precomp.py): autogen include statement, do not remove
23*97e8a929SArmin Le Grand #include "precompiled_svx.hxx"
2409a1d057SAndrew Rist 
25*97e8a929SArmin Le Grand #include <svx/XPropertyEntry.hxx>
26*97e8a929SArmin Le Grand // --------------------
27cdf0e10cSrcweir 
XPropertyEntry(const String & rName)28*97e8a929SArmin Le Grand XPropertyEntry::XPropertyEntry(const String& rName)
29*97e8a929SArmin Le Grand :   maName(rName),
30*97e8a929SArmin Le Grand     maUiBitmap()
31*97e8a929SArmin Le Grand {
32*97e8a929SArmin Le Grand }
33*97e8a929SArmin Le Grand 
XPropertyEntry(const XPropertyEntry & rOther)34*97e8a929SArmin Le Grand XPropertyEntry::XPropertyEntry(const XPropertyEntry& rOther)
35*97e8a929SArmin Le Grand :   maName(rOther.maName),
36*97e8a929SArmin Le Grand     maUiBitmap(rOther.maUiBitmap)
37*97e8a929SArmin Le Grand {
38*97e8a929SArmin Le Grand }
39cdf0e10cSrcweir 
~XPropertyEntry()40*97e8a929SArmin Le Grand XPropertyEntry::~XPropertyEntry()
41cdf0e10cSrcweir {
42*97e8a929SArmin Le Grand }
43cdf0e10cSrcweir 
44*97e8a929SArmin Le Grand // eof
45