bump product version to 4.1.6.2
[LibreOffice.git] / sfx2 / source / sidebar / DeckDescriptor.cxx
blob01602ef0e2c9c80e31d7297122e079f42e62021d
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #include "DeckDescriptor.hxx"
21 namespace sfx2 { namespace sidebar {
23 DeckDescriptor::DeckDescriptor (void)
24 : msTitle(),
25 msId(),
26 msIconURL(),
27 msHighContrastIconURL(),
28 msTitleBarIconURL(),
29 msHighContrastTitleBarIconURL(),
30 msHelpURL(),
31 msHelpText(),
32 maContextList(),
33 mbIsEnabled(true),
34 mnOrderIndex(10000) // Default value as defined in Sidebar.xcs
41 DeckDescriptor::DeckDescriptor (const DeckDescriptor& rOther)
42 : msTitle(rOther.msTitle),
43 msId(rOther.msId),
44 msIconURL(rOther.msIconURL),
45 msHighContrastIconURL(rOther.msHighContrastIconURL),
46 msTitleBarIconURL(rOther.msTitleBarIconURL),
47 msHighContrastTitleBarIconURL(rOther.msHighContrastTitleBarIconURL),
48 msHelpURL(rOther.msHelpURL),
49 msHelpText(rOther.msHelpText),
50 maContextList(rOther.maContextList),
51 mbIsEnabled(rOther.mbIsEnabled),
52 mnOrderIndex(rOther.mnOrderIndex)
59 DeckDescriptor::~DeckDescriptor (void)
63 } } // end of namespace sfx2::sidebar