ChildrenManager.cxx (f6e50924) | ChildrenManager.cxx (9b8096d0) |
---|---|
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 --- 72 unchanged lines hidden (view full) --- 81::com::sun::star::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex) 82 throw (::com::sun::star::uno::RuntimeException, 83 ::com::sun::star::lang::IndexOutOfBoundsException) 84{ 85 OSL_ASSERT (mpImpl != NULL); 86 return mpImpl->GetChild (nIndex); 87} 88 | 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 --- 72 unchanged lines hidden (view full) --- 81::com::sun::star::uno::Reference<XAccessible> ChildrenManager::GetChild (long nIndex) 82 throw (::com::sun::star::uno::RuntimeException, 83 ::com::sun::star::lang::IndexOutOfBoundsException) 84{ 85 OSL_ASSERT (mpImpl != NULL); 86 return mpImpl->GetChild (nIndex); 87} 88 |
89//IAccessibility2 Implementation 2009----- 90Reference<XAccessible> ChildrenManager::GetChild (const Reference<drawing::XShape>& xShape) 91 throw (::com::sun::star::uno::RuntimeException) 92{ 93 OSL_ASSERT (mpImpl != NULL); 94 return mpImpl->GetChild (xShape); 95} |
|
89 | 96 |
97::com::sun::star::uno::Reference< 98 ::com::sun::star::drawing::XShape> ChildrenManager::GetChildShape(long nIndex) 99 throw (::com::sun::star::uno::RuntimeException) 100{ 101 OSL_ASSERT (mpImpl != NULL); 102 return mpImpl->GetChildShape(nIndex); 103} 104//-----IAccessibility2 Implementation 2009 |
|
90 91 92void ChildrenManager::Update (bool bCreateNewObjectsOnDemand) 93{ 94 OSL_ASSERT (mpImpl != NULL); 95 mpImpl->Update (bCreateNewObjectsOnDemand); 96} 97 --- 79 unchanged lines hidden --- | 105 106 107void ChildrenManager::Update (bool bCreateNewObjectsOnDemand) 108{ 109 OSL_ASSERT (mpImpl != NULL); 110 mpImpl->Update (bCreateNewObjectsOnDemand); 111} 112 --- 79 unchanged lines hidden --- |