diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-08-12 10:57:26 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-08-12 11:20:10 +0100 |
commit | 63483b882c80d656dff4279e5be8a59a664a06fe (patch) | |
tree | ab3f0f06b1ddbbb8eeaba973da1e964aefcfba49 /basctl | |
parent | 59a5dcb2065c93e2b4bc95207f7f4e362ce3ee08 (diff) |
XubString->OUString
Change-Id: Ibcb2dd5861ad14e286596999b757ca5c41137626
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/macrodlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/macrodlg.cxx b/basctl/source/basicide/macrodlg.cxx index 36dae438cc8b..1d6525f9d05f 100644 --- a/basctl/source/basicide/macrodlg.cxx +++ b/basctl/source/basicide/macrodlg.cxx @@ -580,7 +580,7 @@ IMPL_LINK( MacroChooser, EditModifyHdl, Edit *, pEdit ) { SvTreeListEntry* pEntry = m_pMacroBox->GetEntry( n ); DBG_ASSERT( pEntry, "Entry ?!" ); - if ( m_pMacroBox->GetEntryText( pEntry ).CompareIgnoreCaseToAscii( aEdtText ) == COMPARE_EQUAL ) + if ( m_pMacroBox->GetEntryText( pEntry ).equalsIgnoreAsciiCase( aEdtText ) ) { SaveSetCurEntry(*m_pMacroBox, pEntry); bFound = true; |