mirror of https://github.com/buggins/dlangui.git
Fix implicit string concatenation
This commit is contained in:
parent
9789897d1d
commit
267910e153
|
@ -69,8 +69,8 @@ static void print_cur_config(android_app* android_app) {
|
||||||
AConfiguration_getLanguage(android_app.config, lang.ptr);
|
AConfiguration_getLanguage(android_app.config, lang.ptr);
|
||||||
AConfiguration_getCountry(android_app.config, country.ptr);
|
AConfiguration_getCountry(android_app.config, country.ptr);
|
||||||
|
|
||||||
LOGV("Config: mcc=%d mnc=%d lang=%c%c cnt=%c%c orien=%d touch=%d dens=%d "
|
LOGV("Config: mcc=%d mnc=%d lang=%c%c cnt=%c%c orien=%d touch=%d dens=%d " ~
|
||||||
"keys=%d nav=%d keysHid=%d navHid=%d sdk=%d size=%d long=%d "
|
"keys=%d nav=%d keysHid=%d navHid=%d sdk=%d size=%d long=%d " ~
|
||||||
"modetype=%d modenight=%d",
|
"modetype=%d modenight=%d",
|
||||||
AConfiguration_getMcc(android_app.config),
|
AConfiguration_getMcc(android_app.config),
|
||||||
AConfiguration_getMnc(android_app.config),
|
AConfiguration_getMnc(android_app.config),
|
||||||
|
|
|
@ -630,9 +630,9 @@ unittest {
|
||||||
CssTextAlign textAlignLast = CssTextAlign.inherit;
|
CssTextAlign textAlignLast = CssTextAlign.inherit;
|
||||||
CssTextDecoration textDecoration = CssTextDecoration.inherit;
|
CssTextDecoration textDecoration = CssTextDecoration.inherit;
|
||||||
CssHyphenate hyphenate = CssHyphenate.inherit;
|
CssHyphenate hyphenate = CssHyphenate.inherit;
|
||||||
string src = "{ display: inline; text-decoration: underline; white-space: pre; text-align: right; text-align-last: left; "
|
string src = "{ display: inline; text-decoration: underline; white-space: pre; text-align: right; text-align-last: left; " ~
|
||||||
"hyphenate: auto; width: 70%; height: 1.5pt; margin-left: 2.0em; "
|
"hyphenate: auto; width: 70%; height: 1.5pt; margin-left: 2.0em; " ~
|
||||||
"font-family: Arial, 'Times New Roman', sans-serif; font-size: 18pt; line-height: 120%; letter-spacing: 2px; font-weight: 300; "
|
"font-family: Arial, 'Times New Roman', sans-serif; font-size: 18pt; line-height: 120%; letter-spacing: 2px; font-weight: 300; " ~
|
||||||
" }tail";
|
" }tail";
|
||||||
CssDeclaration decl = parseCssDeclaration(src, true);
|
CssDeclaration decl = parseCssDeclaration(src, true);
|
||||||
assert(decl !is null);
|
assert(decl !is null);
|
||||||
|
|
Loading…
Reference in New Issue