o2on svn commit
o2on-****@lists*****
2008年 5月 21日 (水) 20:01:56 JST
Revision: 87 http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=o2on&view=rev&rev=87 Author: k-uehara Date: 2008-05-21 20:01:56 +0900 (Wed, 21 May 2008) Log Message: ----------- FIX:datnameのインデックスを作成 一部更新忘れ Modified Paths: -------------- branches/BRANCH_0043/o2on/src.o2on/O2DatIO.cpp Modified: branches/BRANCH_0043/o2on/src.o2on/O2DatIO.cpp =================================================================== --- branches/BRANCH_0043/o2on/src.o2on/O2DatIO.cpp 2008-05-21 10:42:51 UTC (rev 86) +++ branches/BRANCH_0043/o2on/src.o2on/O2DatIO.cpp 2008-05-21 11:01:56 UTC (rev 87) @@ -1120,15 +1120,15 @@ O2DatIO:: StaticReindexThread(void *data) { - static char *targets[] = {"dat","idx_dat_domain_bbsname_datname","idx_dat_lastpublish"}; + static char *targets[] = {"dat","idx_dat_domain_bbsname_datname","idx_dat_lastpublish","idx_dat_datname"}; O2DatIO *me = (O2DatIO*)data; me->ProgressInfo->Reset(true, false); me->ProgressInfo->SetMessage(L"reindex..."); - me->ProgressInfo->AddMax(3); + me->ProgressInfo->AddMax(4); - for (size_t i = 0; i < 3; i++) { + for (size_t i = 0; i < 4; i++) { wstring tmp; ascii2unicode(targets[i], strlen(targets[i]), tmp); tmp.insert(0, L"reindex ");