Subversion Repositories Kolibri OS

Rev

Rev 6887 | Rev 7227 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6887 Rev 7160
Line 31... Line 31...
31
	int KeyPgDown(); 
31
	int KeyPgDown(); 
32
	int KeyPgUp(); 
32
	int KeyPgUp(); 
33
	int KeyLeft(); 
33
	int KeyLeft(); 
34
	int KeyRight();
34
	int KeyRight();
35
	void CheckDoesValuesOkey();
35
	void CheckDoesValuesOkey();
36
	void debug();
36
	//void debug();
37
};
37
};
Line -... Line 38...
-
 
38
 
38
 
39
/*
39
void llist::debug()
40
void llist::debug()
40
{
41
{
41
	char yi[128];
42
	char yi[128];
42
	sprintf(#yi, "%s %d %s %d %s %d %s %d %s %d %s %d", "first:", first, "visible:", visible, "count:", count, "col_max:", column_max, "cur_y:", cur_y, "cur_x:", cur_x);
43
	sprintf(#yi, "%s %d %s %d %s %d %s %d %s %d %s %d", "first:", first, "visible:", visible, "count:", count, "col_max:", column_max, "cur_y:", cur_y, "cur_x:", cur_x);
43
	debugln(#yi);
44
	debugln(#yi);
Line 44... Line 45...
44
}
45
}*/
45
 
46
 
46
 
47