summaryrefslogtreecommitdiff
path: root/sc/source/ui/condformat
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-01-25 23:09:44 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-01-26 00:49:16 +0100
commit0367a2679b480cbe03c41b02990f11f9aaf816e9 (patch)
tree8d1c2df479d23266ba75449b12f9645fe17a17c8 /sc/source/ui/condformat
parent7ea45e67c29b22b2c94375be3935f1343306a25c (diff)
fix typo
Change-Id: I9ec827e0c4000844c495f788e6fc166d41bdb944
Diffstat (limited to 'sc/source/ui/condformat')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx
index ed249611e328..66c7f269c288 100644
--- a/sc/source/ui/condformat/condformatdlgentry.cxx
+++ b/sc/source/ui/condformat/condformatdlgentry.cxx
@@ -1398,7 +1398,7 @@ void ScIconSetFrmtEntry::SetActive()
{
maLbColorFormat.Show();
maLbIconSetType.Show();
- for(ScIconSetFrmtDateEntriesType::iterator itr = maEntries.begin(),
+ for(ScIconSetFrmtDataEntriesType::iterator itr = maEntries.begin(),
itrEnd = maEntries.end(); itr != itrEnd; ++itr)
{
itr->Show();
@@ -1411,7 +1411,7 @@ void ScIconSetFrmtEntry::SetInactive()
{
maLbColorFormat.Hide();
maLbIconSetType.Hide();
- for(ScIconSetFrmtDateEntriesType::iterator itr = maEntries.begin(),
+ for(ScIconSetFrmtDataEntriesType::iterator itr = maEntries.begin(),
itrEnd = maEntries.end(); itr != itrEnd; ++itr)
{
itr->Hide();
@@ -1426,7 +1426,7 @@ ScFormatEntry* ScIconSetFrmtEntry::GetEntry() const
ScIconSetFormatData* pData = new ScIconSetFormatData;
pData->eIconSetType = static_cast<ScIconSetType>(maLbIconSetType.GetSelectEntryPos());
- for(ScIconSetFrmtDateEntriesType::const_iterator itr = maEntries.begin(),
+ for(ScIconSetFrmtDataEntriesType::const_iterator itr = maEntries.begin(),
itrEnd = maEntries.end(); itr != itrEnd; ++itr)
{
pData->maEntries.push_back(itr->CreateEntry(mpDoc, maPos));