PanelDescriptor.cxx (ff12d537) | PanelDescriptor.cxx (95a18594) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 20 unchanged lines hidden (view full) --- 29PanelDescriptor::PanelDescriptor (void) 30 : msTitle(), 31 mbIsTitleBarOptional(false), 32 msId(), 33 msDeckId(), 34 msHelpURL(), 35 maContexts(), 36 msLayout(), | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 20 unchanged lines hidden (view full) --- 29PanelDescriptor::PanelDescriptor (void) 30 : msTitle(), 31 mbIsTitleBarOptional(false), 32 msId(), 33 msDeckId(), 34 msHelpURL(), 35 maContexts(), 36 msLayout(), |
37 msImplementationURL() | 37 msImplementationURL(), 38 mnOrderIndex(10000) // Default value as defined in Sidebar.xcs |
38{ 39} 40 41 42 43 44PanelDescriptor::PanelDescriptor (const PanelDescriptor& rOther) 45 : msTitle(rOther.msTitle), 46 mbIsTitleBarOptional(rOther.mbIsTitleBarOptional), 47 msId(rOther.msId), 48 msDeckId(rOther.msDeckId), 49 msHelpURL(rOther.msHelpURL), 50 maContexts(rOther.maContexts), 51 msLayout(rOther.msLayout), | 39{ 40} 41 42 43 44 45PanelDescriptor::PanelDescriptor (const PanelDescriptor& rOther) 46 : msTitle(rOther.msTitle), 47 mbIsTitleBarOptional(rOther.mbIsTitleBarOptional), 48 msId(rOther.msId), 49 msDeckId(rOther.msDeckId), 50 msHelpURL(rOther.msHelpURL), 51 maContexts(rOther.maContexts), 52 msLayout(rOther.msLayout), |
52 msImplementationURL(rOther.msImplementationURL) | 53 msImplementationURL(rOther.msImplementationURL), 54 mnOrderIndex(rOther.mnOrderIndex) |
53{ 54} 55 56 57 58PanelDescriptor::~PanelDescriptor (void) 59{ 60} 61 62 63} } // end of namespace sfx2::sidebar | 55{ 56} 57 58 59 60PanelDescriptor::~PanelDescriptor (void) 61{ 62} 63 64 65} } // end of namespace sfx2::sidebar |