vclxaccessiblemenu.cxx (0841af79) | vclxaccessiblemenu.cxx (21075d77) |
---|---|
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 --- 235 unchanged lines hidden (view full) --- 244 245 if ( nChildIndex < 0 || nChildIndex >= GetChildCount() ) 246 throw IndexOutOfBoundsException(); 247 248 DeSelectAll(); 249} 250 251// ----------------------------------------------------------------------------- | 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 --- 235 unchanged lines hidden (view full) --- 244 245 if ( nChildIndex < 0 || nChildIndex >= GetChildCount() ) 246 throw IndexOutOfBoundsException(); 247 248 DeSelectAll(); 249} 250 251// ----------------------------------------------------------------------------- |
252 253::rtl::OUString VCLXAccessibleMenu::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException) 254{ 255 OExternalLockGuard aGuard( this ); 256 257 if ( nIndex < 0 || nIndex >= getAccessibleActionCount() ) 258 throw IndexOutOfBoundsException(); 259 260 return ::rtl::OUString( ); 261} 262 |
|