diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-01-25 23:09:44 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-01-26 00:49:16 +0100 |
commit | 0367a2679b480cbe03c41b02990f11f9aaf816e9 (patch) | |
tree | 8d1c2df479d23266ba75449b12f9645fe17a17c8 /sc | |
parent | 7ea45e67c29b22b2c94375be3935f1343306a25c (diff) |
fix typo
Change-Id: I9ec827e0c4000844c495f788e6fc166d41bdb944
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 6 | ||||
-rw-r--r-- | sc/source/ui/inc/condformatdlgentry.hxx | 4 |
2 files changed, 5 insertions, 5 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)); diff --git a/sc/source/ui/inc/condformatdlgentry.hxx b/sc/source/ui/inc/condformatdlgentry.hxx index a80c7d772909..bd8b0e6d64db 100644 --- a/sc/source/ui/inc/condformatdlgentry.hxx +++ b/sc/source/ui/inc/condformatdlgentry.hxx @@ -250,8 +250,8 @@ class ScIconSetFrmtEntry : public ScCondFrmtEntry // icon set ui elements ListBox maLbIconSetType; - typedef boost::ptr_vector<ScIconSetFrmtDataEntry> ScIconSetFrmtDateEntriesType; - ScIconSetFrmtDateEntriesType maEntries; + typedef boost::ptr_vector<ScIconSetFrmtDataEntry> ScIconSetFrmtDataEntriesType; + ScIconSetFrmtDataEntriesType maEntries; virtual rtl::OUString GetExpressionString(); |