diff options
author | László Németh <nemeth@numbertext.org> | 2011-12-13 10:18:52 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2011-12-13 10:30:53 +0100 |
commit | e2812dd41916cb90c28782b855a100edb4b681b0 (patch) | |
tree | e7479337782a1c9bac899285ccfbb33e6495a1da /cui | |
parent | 946b0d316358006aca8d59b84f3239a8ae108541 (diff) |
Fix always-false condition of FullCommentURL
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/SpellDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx index fee3bdd02ab8..cb68f6b90366 100644 --- a/cui/source/dialogs/SpellDialog.cxx +++ b/cui/source/dialogs/SpellDialog.cxx @@ -1233,7 +1233,7 @@ bool SpellDialog::GetNextSentence_Impl(bool bUseSavedSentence, bool bRecheck) beans::PropertyValues aProperties = aStart->aGrammarError.aProperties; rtl::OUString sFullCommentURL; sal_Int32 i = 0; - while ( !sFullCommentURL.isEmpty() && i < aProperties.getLength() ) + while ( sFullCommentURL.isEmpty() && i < aProperties.getLength() ) { if ( aProperties[i].Name.equalsAscii( "FullCommentURL" ) ) { |