mirror of https://github.com/buggins/dlangui.git
Merge pull request #601 from NotSpooky/patch-1
Fix compilation for DMD 2.090
This commit is contained in:
commit
1022a8384d
|
@ -489,7 +489,7 @@ final class Setting {
|
|||
|
||||
|
||||
/// read as string value
|
||||
@property inout(string) str() inout {
|
||||
@property string str() {
|
||||
final switch(_type) with(SettingType) {
|
||||
case STRING:
|
||||
return _store.str;
|
||||
|
@ -510,7 +510,7 @@ final class Setting {
|
|||
}
|
||||
}
|
||||
/// read as string value
|
||||
inout(string) strDef(string defValue) inout {
|
||||
inout (string) strDef(inout (string) defValue) {
|
||||
final switch(_type) with(SettingType) {
|
||||
case STRING:
|
||||
return _store.str;
|
||||
|
@ -2313,5 +2313,3 @@ final class Setting {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -280,7 +280,7 @@ class Console {
|
|||
break;
|
||||
}
|
||||
if (readBufPos > 0 && isSequenceCompleted()) {
|
||||
string s = readBuf[0 .. readBufPos].dup;
|
||||
string s = readBuf[0 .. readBufPos].idup;
|
||||
readBufPos = 0;
|
||||
return s;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue