mirror of https://github.com/buggins/dlangui.git
Fixed passing argument to to!string (it cannot handle inout args - bug in phobos?)
This commit is contained in:
parent
e9b0a20482
commit
bbfb1ce96f
|
@ -498,7 +498,7 @@ final class Setting {
|
|||
case UINTEGER:
|
||||
return to!string(_store.uinteger);
|
||||
case FLOAT:
|
||||
return to!string(_store.floating);
|
||||
return to!string(cast(double)_store.floating);
|
||||
case TRUE:
|
||||
return "true";
|
||||
case FALSE:
|
||||
|
@ -519,7 +519,7 @@ final class Setting {
|
|||
case UINTEGER:
|
||||
return to!string(_store.uinteger);
|
||||
case FLOAT:
|
||||
return to!string(_store.floating);
|
||||
return to!string(cast(double)_store.floating);
|
||||
case TRUE:
|
||||
return "true";
|
||||
case FALSE:
|
||||
|
|
Loading…
Reference in New Issue