summaryrefslogtreecommitdiff
path: root/sc/source/ui/condformat
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-11-25 08:52:12 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-11-25 08:52:12 +0100
commita4f0c2696b1b32a9a233d377c28570135c29b5a1 (patch)
tree693f145e0e94ef5d32fd022b13b209eee417e606 /sc/source/ui/condformat
parent93e57ac549abc41bdc875b9cbe5869c251f879a7 (diff)
Fix typo
Change-Id: I8f5aba83864aa46bd6bd0535f340af06e475671d
Diffstat (limited to 'sc/source/ui/condformat')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index a1cac8329d24..59cfb9243df6 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -140,7 +140,7 @@ IMPL_LINK(ScCondFrmtEntry, EdModifyHdl, Edit*, pEdit)
//
namespace {
-void FillStlyeListBox( ScDocument* pDoc, ListBox& rLbStyle )
+void FillStyleListBox( ScDocument* pDoc, ListBox& rLbStyle )
{
rLbStyle.SetSeparatorPos(0);
std::set<rtl::OUString> aStyleNames;
@@ -288,7 +288,7 @@ void ScConditionFrmtEntry::Init()
maEdVal1.SetModifyHdl( LINK( this, ScCondFrmtEntry, EdModifyHdl ) );
maEdVal2.SetModifyHdl( LINK( this, ScCondFrmtEntry, EdModifyHdl ) );
- FillStlyeListBox( mpDoc, maLbStyle );
+ FillStyleListBox( mpDoc, maLbStyle );
maLbStyle.SetSelectHdl( LINK( this, ScConditionFrmtEntry, StyleSelectHdl ) );
maLbCondType.SetSelectHdl( LINK( this, ScConditionFrmtEntry, ConditionTypeSelectHdl ) );
@@ -523,7 +523,7 @@ void ScFormulaFrmtEntry::Init()
maEdFormula.SetGetFocusHdl( LINK( GetParent()->GetParent(), ScCondFormatDlg, RangeGetFocusHdl ) );
maEdFormula.SetLoseFocusHdl( LINK( GetParent()->GetParent(), ScCondFormatDlg, RangeLoseFocusHdl ) );
- FillStlyeListBox( mpDoc, maLbStyle );
+ FillStyleListBox( mpDoc, maLbStyle );
maLbStyle.SetSelectHdl( LINK( this, ScFormulaFrmtEntry, StyleSelectHdl ) );
}
@@ -1181,7 +1181,7 @@ void ScDateFrmtEntry::Init()
maLbDateEntry.SelectEntryPos(0);
maLbType.SelectEntryPos(3);
- FillStlyeListBox( mpDoc, maLbStyle );
+ FillStyleListBox( mpDoc, maLbStyle );
maLbStyle.SetSelectHdl( LINK( this, ScDateFrmtEntry, StyleSelectHdl ) );
}