diff options
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/Filter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx index 414760b7573e..2e8f6df84ea3 100644 --- a/forms/source/component/Filter.cxx +++ b/forms/source/component/Filter.cxx @@ -355,7 +355,7 @@ namespace frm } OUString sText( aText.makeStringAndClear() ); - if ( m_aText.compareTo( sText ) ) + if ( m_aText != sText ) { m_aText = sText; TextEvent aEvt; @@ -513,7 +513,7 @@ namespace frm default: return true; } - if (m_aText.compareTo(aText)) + if ( m_aText != aText ) { // check the text with the SQL-Parser OUString aNewText(aText); |