mirror of https://github.com/buggins/dlangui.git
fix string concatenation warnings
This commit is contained in:
parent
7d38f2bcff
commit
1f1459bd52
|
|
@ -354,10 +354,10 @@ class ConsoleDrawBuf : DrawBuf {
|
||||||
|
|
||||||
static immutable dstring SPACE_STRING =
|
static immutable dstring SPACE_STRING =
|
||||||
" "
|
" "
|
||||||
" "
|
~ " "
|
||||||
" "
|
~ " "
|
||||||
" "
|
~ " "
|
||||||
" ";
|
~ " ";
|
||||||
|
|
||||||
/// fill rectangle with solid color (clipping is applied)
|
/// fill rectangle with solid color (clipping is applied)
|
||||||
override void fillRect(Rect rc, uint color) {
|
override void fillRect(Rect rc, uint color) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue