Changeset 20749 for lang/csharp

Show
Ignore:
Timestamp:
10/05/08 06:51:51 (2 months ago)
Author:
poolmmjp
Message:

今までは取得した全データを持ち続けていたけど、最大1500件までしか持たないように変更した。高速化のため。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/csharp/MMMMB/MMMMB/MiniBlogView.cs

    r20718 r20749  
    156156                    } 
    157157                    if (before == entryList.Count) return;  // �ω��������ꍇ�͔����� 
     158                    // 1500 ���ȏ��Ȃ����������� 
     159                    if (1500 < entryList.Count) entryList.RemoveRange(0, entryList.Count - 1500); 
     160 
    158161                    // �`��                    Redraw(); 
    159162