fix build warnings

This commit is contained in:
lixianjing 2024-11-04 17:32:25 +08:00
parent 4b8f9a42fd
commit d1dcf9eea4
2 changed files with 0 additions and 4 deletions

View File

@ -541,7 +541,6 @@ static ret_t text_edit_layout_fragment(text_edit_t* text_edit, uint32_t start, u
uint32_t x = 0;
uint32_t offset0 = start;
uint32_t offset = start;
wchar_t last_char = 0;
DECL_IMPL(text_edit);
wstr_t* text = &(text_edit->widget->text);
canvas_t* c = GET_CANVAS(text_edit);
@ -557,7 +556,6 @@ static ret_t text_edit_layout_fragment(text_edit_t* text_edit, uint32_t start, u
break_type_t word_break = LINE_BREAK_NO;
break_type_t line_break = LINE_BREAK_NO;
uint32_t char_w = canvas_measure_text(c, p, 1) + CHAR_SPACING;
last_char = *p;
line_break = line_break_check(*p, p[1]);
if (line_break == LINE_BREAK_MUST || i == end - 1) {
last_line = (line_info_t*)darray_get(&row->info, row->line_num - 1);

View File

@ -1152,8 +1152,6 @@ static ret_t mledit_insert_text_overwrite(widget_t* widget, uint32_t offset, con
mledit_t* mledit = MLEDIT(widget);
wstr_t s = {0};
wstr_t* text = NULL;
uint32_t line_num = 1;
int32_t i = 0;
uint32_t rm_cnt = 0;
uint32_t newtext_len = 0;
return_value_if_fail(mledit != NULL && mledit->model != NULL, RET_BAD_PARAMS);