fix deprecations

This commit is contained in:
Vadim Lopatin 2017-12-03 20:58:28 +03:00
parent 287c7cdb67
commit 582feeac53
4 changed files with 4 additions and 1 deletions

View File

@ -219,6 +219,7 @@ private string demangle(string mangled_name) {
string demangled_name; // = dlangide.tools.d.demangle.demangle(mangled_name);
//if (demangled_name[0] == '_') { // in the unlikely event that we fail to demangle, fall back to the phobos demangler
try {
static import core.demangle;
if (demangleBuffer.length < mangled_name.length + 16384)
demangleBuffer.length = mangled_name.length * 2 + 16384;
demangled_name = cast(string)core.demangle.demangle(mangled_name, demangleBuffer[]);

View File

@ -87,6 +87,7 @@ class TraceFuncionGrid : StringGridWidgetBase {
/// get cell text
override dstring cellText(int col, int row) {
import std.conv : to;
if (row < 0 || row >= _list.length)
return ""d;
FunctionNode entry = _list[row];

View File

@ -62,6 +62,7 @@ StringListValue[] createIntValueList(int[] values, dstring suffix = ""d) {
/// create DlangIDE settings pages tree
SettingsPage createSettingsPages() {
import std.conv : to;
// Root page
SettingsPage res = new SettingsPage("", UIString.fromRaw(""d));

View File

@ -1 +1 @@
v0.8.9
v0.8.10