Subversion Repositories spk

Rev

Rev 182 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 182 Rev 197
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(Utils::CStringList &list)
40
		void AddStringList(Utils::WStringList &list)
41
		{
41
		{
42
			for(auto itr = list.begin(); itr != list.end(); itr++)
42
			for(auto itr = list.begin(); itr != list.end(); itr++)
43
				AddItem(_US((*itr)->str), _US((*itr)->data));
43
				AddItem(_US((*itr)->str), _US((*itr)->data));
44
		}
44
		}
45
 
45