Subversion Repositories Kolibri OS

Rev

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

Rev 9602 Rev 9640
Line 134... Line 134...
134
	ed_text = ESI.edit_box.text;
134
	ed_text = ESI.edit_box.text;
135
	//ESI.edit_box.pos =  //no need because of 7904
135
	//ESI.edit_box.pos =  //no need because of 7904
136
	ESI.edit_box.size = strlen(ed_text);
136
	ESI.edit_box.size = strlen(ed_text);
137
}
137
}
Line 138... Line 138...
138
 
138
 
139
:dword EditBox_CreateStandart(dword width, left, top, maxlen, text, flags)
139
:dword EditBox_Create(dword left, top, width, maxlen, text, flags)
140
{
140
{
141
	dword eb, i;
141
	dword eb, i;
142
	eb = malloc(sizeof(edit_box));
142
	eb = malloc(sizeof(edit_box));
143
	for (i = 0; i < sizeof(edit_box); i++) ESBYTE[eb + i] = 0;
143
	for (i = 0; i < sizeof(edit_box); i++) ESBYTE[eb + i] = 0;