Defining variable once since Win32 doesn't accept this format

This commit is contained in:
mostafah%oeone.com 2004-10-28 20:37:21 +00:00
Родитель 526ed32b21
Коммит b76fff2d07
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1490,7 +1490,8 @@ oeICalImpl::GetEventsForRange(PRTime aBeginDate, PRTime aEndDate, nsISimpleEnume
nsVoidArray occurList; nsVoidArray occurList;
oeIICalEvent *tmpevent; oeIICalEvent *tmpevent;
for (PRInt32 i = 0 ; i < m_eventlist.Count(); ++i) { PRInt32 i;
for (i = 0 ; i < m_eventlist.Count(); ++i) {
tmpevent = NS_STATIC_CAST(oeIICalEvent*, m_eventlist[i]); tmpevent = NS_STATIC_CAST(oeIICalEvent*, m_eventlist[i]);
struct icaltimetype check = checkdate; struct icaltimetype check = checkdate;
bool isbeginning; bool isbeginning;
@ -1515,7 +1516,7 @@ oeICalImpl::GetEventsForRange(PRTime aBeginDate, PRTime aEndDate, nsISimpleEnume
} }
occurList.Sort(occurCompareFunc, nsnull); occurList.Sort(occurCompareFunc, nsnull);
for (PRInt32 i = 0 ; i < occurList.Count(); ++i) { for (i = 0 ; i < occurList.Count(); ++i) {
eventOccurence *occur = NS_STATIC_CAST(eventOccurence*, occurList[i]); eventOccurence *occur = NS_STATIC_CAST(eventOccurence*, occurList[i]);
tmpevent = NS_STATIC_CAST(oeIICalEvent*, occur->event); tmpevent = NS_STATIC_CAST(oeIICalEvent*, occur->event);
((oeICalEventImpl *)tmpevent)-> ((oeICalEventImpl *)tmpevent)->