diff options
author | Kevin Hunter <hunteke@earlham.edu> | 2010-11-08 21:02:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-08 21:02:43 +0000 |
commit | 5d473657bc444811ec99b3a99006f899a259602b (patch) | |
tree | 9664a7867e75680c2aa41719e5c55466520a3fc6 /accessibility | |
parent | 4e06334688c063a66d48d9e94c0f037f85f025a3 (diff) |
remove commented out code
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/source/standard/vclxaccessibledropdowncombobox.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx b/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx index 066b585feadb..3078fac6b2fe 100644 --- a/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx +++ b/accessibility/source/standard/vclxaccessibledropdowncombobox.cxx @@ -87,28 +87,6 @@ void VCLXAccessibleDropDownComboBox::ProcessWindowEvent (const VclWindowEvent& r case VCLEVENT_DROPDOWN_OPEN: case VCLEVENT_DROPDOWN_CLOSE: { - /* // child count changed - Any aOldValue, aNewValue; - // get the listbox child - Reference< XAccessible > xChild; - if ( !xChild.is() ) - { - try - { - // the listbox is the second child - xChild = getAccessibleChild(1); - } - catch ( IndexOutOfBoundsException& ) {} - catch ( RuntimeException& ) {} - } - if ( rVclWindowEvent.GetId() == VCLEVENT_DROPDOWN_OPEN ) - aNewValue <<= xChild; - else - aOldValue <<= xChild; - NotifyAccessibleEvent( - AccessibleEventId::CHILD, aOldValue, aNewValue - ); - */ break; } |