Subversion Repositories spk

Rev

Rev 1 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 182
Line 35... Line 35...
35
		{
35
		{
36
			this->columnHeader1->Text = h1;
36
			this->columnHeader1->Text = h1;
37
			this->columnHeader2->Text = h2;
37
			this->columnHeader2->Text = h2;
38
		}
38
		}
39
 
39
 
40
		void AddStringList(CyStringList &list)
40
		void AddStringList(Utils::CStringList &list)
41
		{
41
		{
42
			for ( SStringList *str = list.Head(); str; str = str->;next )
42
			for(auto itr = list.begin(); itr != list.end(); itr++)
43
				AddItem(SystemStringFromCyString(str->str), SystemStringFromCyString(str->data));
43
				AddItem(_US((*itr)->str), _US((*itr)->data));
44
		}
44
		}
45
 
45
 
46
		void AddItem(String ^item1, String ^item2)
46
		void AddItem(String ^item1, String ^item2)
47
		{
47
		{
48
			ListViewItem ^i = gcnew ListViewItem(item1);
48
			ListViewItem ^i = gcnew ListViewItem(item1);