mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 03:58:33 +08:00
fix utf8-bom
This commit is contained in:
parent
a29c8870ee
commit
389e65a5f0
@ -2,7 +2,8 @@
|
||||
|
||||
* 2020/07/31
|
||||
* 增加 EVT_RESET
|
||||
|
||||
* 部分文件增加 UTF8-BOM(感谢陈谭提供补丁)。
|
||||
|
||||
* 2020/07/30
|
||||
* 如果新窗口的 sensitive 属性为 FALSE,不切换窗口焦点。
|
||||
* 完善 text edit, 修复 mledit 在非缺省字体时的问题(感谢俊杰提供补丁)。
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/**
|
||||
* File: bidi.h
|
||||
* Author: AWTK Develop Team
|
||||
* Brief: Unicode Bidirectional Algorithm.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/**
|
||||
* File: canvas_offline.c
|
||||
* Author: AWTK Develop Team
|
||||
* Brief: offline canvas.
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/**
|
||||
* File: canvas_offline.h
|
||||
* Author: AWTK Develop Team
|
||||
* Brief: offline canvas.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user