1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

v2.11.1.1

This commit is contained in:
gnosygnu
2015-11-01 20:50:05 -05:00
parent 4f43f51b18
commit b990ec409f
858 changed files with 6758 additions and 4187 deletions

View File

@@ -217,7 +217,7 @@ class Xog_menu_bldr {
public Xog_menu_bldr Add_grp_bgn(String key) {
Indent();
bfr.Add(Const_itm_grp_bgn_lhs);
bfr.Add_str(key);
bfr.Add_str_u8(key);
bfr.Add(Const_itm_grp_bgn_rhs);
Indent_add();
return this;
@@ -231,7 +231,7 @@ class Xog_menu_bldr {
public Xog_menu_bldr Add_btn(String key) {
Indent();
bfr.Add(Const_itm_btn_bgn_lhs);
bfr.Add_str(key);
bfr.Add_str_u8(key);
bfr.Add(Const_itm_btn_bgn_rhs);
return this;
}