fix some more indent and strip ::rtl::
Change-Id: I8a4f220e6e07babbb2fa8f8dcab524ba90e62986
This commit is contained in:
@@ -181,7 +181,7 @@ void VCLXAccessibleBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEven
|
|||||||
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)
|
||||||
|
Reference in New Issue
Block a user