mirror of https://github.com/buggins/dlangui.git
trying to fix LDC build
This commit is contained in:
parent
86baf487e7
commit
2b1057b037
|
|
@ -1402,7 +1402,13 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
|
||||||
|
|
||||||
class StringListWidget : ListWidget {
|
class StringListWidget : ListWidget {
|
||||||
import std.conv : to;
|
import std.conv : to;
|
||||||
import std.datetime.stopwatch : StopWatch;
|
version(DigitalMars) {
|
||||||
|
import std.datetime.stopwatch : StopWatch;
|
||||||
|
} else {
|
||||||
|
import std.datetime.stopwatch : StopWatch;
|
||||||
|
import std.datetime : dto = to;
|
||||||
|
}
|
||||||
|
|
||||||
import core.time : dur;
|
import core.time : dur;
|
||||||
private dstring _searchString;
|
private dstring _searchString;
|
||||||
private StopWatch _stopWatch;
|
private StopWatch _stopWatch;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue