Subversion Repositories Kolibri OS

Rev

Rev 7743 | Rev 7756 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7743 leency 1
#ifdef LANG_RUS
2
#define HISTORY_HEADER "
3
4
	История
5
6
7
	

История

8
	
9
	Посещенные страницы
10
"
11
#else
12
#define HISTORY_HEADER "
13
14
	History
15
16
17
	

History

18
	
19
	Visited pages
20
"
21
#endif
22
 
23
 
4636 leency 24
ShowHistory()
25
{
7750 leency 26
	int i;
27
	static int history_pointer;
28
	int t;
29
 
30
	free(history_pointer);
31
	history_pointer = malloc(history.items.data_size+256);
32
	strcat(history_pointer, HISTORY_HEADER);
33
	for (i=0; i
34
	{
35
		strcat(history_pointer, "\t");
38
		strcat(history_pointer, history.items.get(i));
39
		strcat(history_pointer, "
");
40
	}
41
	/*
42
	strcat(history_pointer, "
Cached images
");
43
	for (i=1; i
44
	{
45
		strcat(history_pointer, "");
48
		strcat(history_pointer, #pics[i].path);
49
		strcat(history_pointer, "
");
4636 leency 50
 
7750 leency 51
		// strcat(history_pointer, "
");
54
		// strcat(history_pointer, #pics[i].path);
55
	}
56
	*/
57
	strcat(history_pointer, "");
58
	LoadInternalPage(history_pointer, strlen(history_pointer));
4636 leency 59
}