Fix simple typo in parameter name
Change-Id: I8c4a5e701c20c70c7df091a34efb38936ee59f9d Reviewed-on: https://gerrit.libreoffice.org/26420 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
This commit is contained in:
parent
c13f60e7cd
commit
093ebf2722
1 changed files with 5 additions and 5 deletions
|
@ -244,15 +244,15 @@ namespace pcr
|
|||
}
|
||||
|
||||
|
||||
void OBrowserLine::SetTitle(const OUString& _rNewTtile )
|
||||
void OBrowserLine::SetTitle(const OUString& _rNewTitle )
|
||||
{
|
||||
if ( GetTitle() == _rNewTtile )
|
||||
if ( GetTitle() == _rNewTitle )
|
||||
return;
|
||||
m_aFtTitle->SetText( _rNewTtile );
|
||||
m_aFtTitle->SetText( _rNewTitle );
|
||||
if ( m_pControlWindow )
|
||||
m_pControlWindow->SetAccessibleName( _rNewTtile );
|
||||
m_pControlWindow->SetAccessibleName( _rNewTitle );
|
||||
if ( m_pBrowseButton )
|
||||
m_pBrowseButton->SetAccessibleName( _rNewTtile );
|
||||
m_pBrowseButton->SetAccessibleName( _rNewTitle );
|
||||
FullFillTitleString();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue