fix some more indent and strip ::rtl::

Change-Id: I8a4f220e6e07babbb2fa8f8dcab524ba90e62986
This commit is contained in:
Caolán McNamara
2014-07-02 12:13:20 +01:00
parent 192e087f97
commit cfdc2cf64a

View File

@@ -175,13 +175,13 @@ void VCLXAccessibleBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEven
} }
case VCLEVENT_COMBOBOX_SELECT: case VCLEVENT_COMBOBOX_SELECT:
{ {
VCLXAccessibleList* pList = static_cast<VCLXAccessibleList*>(m_xList.get()); VCLXAccessibleList* pList = static_cast<VCLXAccessibleList*>(m_xList.get());
if (pList != NULL && m_xText.is()) if (pList != NULL && m_xText.is())
{ {
Reference<XAccessibleText> xText (m_xText->getAccessibleContext(), UNO_QUERY); Reference<XAccessibleText> xText (m_xText->getAccessibleContext(), UNO_QUERY);
if ( xText.is() ) if ( xText.is() )
{ {
::rtl::OUString sText = xText->getSelectedText(); OUString sText = xText->getSelectedText();
if ( sText.isEmpty() ) if ( sText.isEmpty() )
sText = xText->getText(); sText = xText->getText();
pList->UpdateSelection_Acc(sText, m_bIsDropDownBox); pList->UpdateSelection_Acc(sText, m_bIsDropDownBox);
@@ -478,7 +478,7 @@ Any VCLXAccessibleBox::getCurrentValue( )
Reference<XAccessibleText> xText (m_xText->getAccessibleContext(), UNO_QUERY); Reference<XAccessibleText> xText (m_xText->getAccessibleContext(), UNO_QUERY);
if ( xText.is() ) if ( xText.is() )
{ {
::rtl::OUString sText = xText->getText(); OUString sText = xText->getText();
aAny <<= sText; aAny <<= sText;
} }
} }
@@ -508,7 +508,7 @@ sal_Bool VCLXAccessibleBox::setCurrentValue( const Any& aNumber )
SolarMutexGuard aSolarGuard; SolarMutexGuard aSolarGuard;
::osl::Guard< ::osl::Mutex > aGuard( GetMutex() ); ::osl::Guard< ::osl::Mutex > aGuard( GetMutex() );
::rtl::OUString fValue; OUString fValue;
bool bValid = (aNumber >>= fValue); bool bValid = (aNumber >>= fValue);
if( bValid ) if( bValid )
{ {
@@ -538,7 +538,7 @@ void VCLXAccessibleBox::FillAccessibleStateSet( utl::AccessibleStateSetHelper& r
VCLXAccessibleComponent::FillAccessibleStateSet(rStateSet); VCLXAccessibleComponent::FillAccessibleStateSet(rStateSet);
if (m_aBoxType == COMBOBOX ) if (m_aBoxType == COMBOBOX )
{ {
::rtl::OUString sText; OUString sText;
sal_Int32 nEntryCount = 0; sal_Int32 nEntryCount = 0;
ComboBox* pComboBox = static_cast<ComboBox*>(GetWindow()); ComboBox* pComboBox = static_cast<ComboBox*>(GetWindow());
if (pComboBox != NULL) if (pComboBox != NULL)