summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2011-12-13 10:18:52 +0100
committerLászló Németh <nemeth@numbertext.org>2011-12-13 10:30:53 +0100
commite2812dd41916cb90c28782b855a100edb4b681b0 (patch)
treee7479337782a1c9bac899285ccfbb33e6495a1da
parent946b0d316358006aca8d59b84f3239a8ae108541 (diff)
Fix always-false condition of FullCommentURL
-rw-r--r--cui/source/dialogs/SpellDialog.cxx2
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" ) )
{