fix utf8-bom

This commit is contained in:
xianjimli 2020-07-31 11:40:18 +08:00
parent a29c8870ee
commit 389e65a5f0
5 changed files with 6 additions and 5 deletions

View File

@ -2,7 +2,8 @@
* 2020/07/31
* 增加 EVT_RESET
* 部分文件增加 UTF8-BOM感谢陈谭提供补丁
* 2020/07/30
* 如果新窗口的 sensitive 属性为 FALSE不切换窗口焦点。
* 完善 text edit, 修复 mledit 在非缺省字体时的问题(感谢俊杰提供补丁)。

View File

@ -1,4 +1,4 @@
/**
/**
* File: bidi.h
* Author: AWTK Develop Team
* Brief: Unicode Bidirectional Algorithm.

View File

@ -1,4 +1,4 @@
/**
/**
* File: canvas_offline.c
* Author: AWTK Develop Team
* Brief: offline canvas.

View File

@ -1,4 +1,4 @@
/**
/**
* File: canvas_offline.h
* Author: AWTK Develop Team
* Brief: offline canvas.

View File

@ -176,7 +176,7 @@ uint32_t emitter_on_with_tag(emitter_t* emitter, uint32_t etype, event_func_t ha
}
bool_t emitter_exist(emitter_t* emitter, uint32_t etype, event_func_t handler, void* ctx) {
return_value_if_fail(emitter != NULL, NULL);
return_value_if_fail(emitter != NULL, FALSE);
if (emitter->items) {
emitter_item_t* iter = emitter->items;