summaryrefslogtreecommitdiff
path: root/cui/source/options
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2010-05-10 12:31:26 +0200
committerNiklas Nebel <nn@openoffice.org>2010-05-10 12:31:26 +0200
commit7d676f28e931c0cb87174f7bfa5cf204b7f60812 (patch)
treeafc9a6f6ffc739f1288c80a7dc88227e62f6c695 /cui/source/options
parent14a6186576146ba795e663fd44be45fd60404c93 (diff)
calc54: #i111482# use right variable for loop in ApplyLanguageOptions
Diffstat (limited to 'cui/source/options')
-rw-r--r--cui/source/options/treeopt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/treeopt.cxx b/cui/source/options/treeopt.cxx
index f1651b0bd1dd..00e74da32557 100644
--- a/cui/source/options/treeopt.cxx
+++ b/cui/source/options/treeopt.cxx
@@ -1823,7 +1823,7 @@ void OfaTreeOptionsDialog::ApplyLanguageOptions(const SfxItemSet& rSet)
while ( _pViewFrame )
{
_pViewFrame->GetDispatcher()->Execute(pItem->Which(), SFX_CALLMODE_ASYNCHRON, pItem, 0L);
- _pViewFrame = SfxViewFrame::GetNext( *pViewFrame );
+ _pViewFrame = SfxViewFrame::GetNext( *_pViewFrame );
}
}
}