fix build error

This commit is contained in:
Vadim Lopatin 2015-12-04 10:04:03 +03:00
parent 2e5f328d31
commit ce0ed698c2
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ extern (C) int UIAppMain(string[] args) {
debuggerTest(); debuggerTest();
} }
version(USE_GDB_DEBUG) { version(USE_GDB_DEBUG) {
debuggerTest(); debuggerTestGDB();
} }
// create window // create window
@ -97,7 +97,7 @@ version(USE_WIN_DEBUG) {
} }
version(USE_GDB_DEBUG) { version(USE_GDB_DEBUG) {
void debuggerTest() { void debuggerTestGDB() {
import ddebug.gdb.gdbinterface; import ddebug.gdb.gdbinterface;
import core.thread; import core.thread;
Log.d("Testing GDB debugger"); Log.d("Testing GDB debugger");

View File

@ -197,7 +197,7 @@ class SearchWidget : TabWidget {
_layout.addChild(_findText); _layout.addChild(_findText);
auto goButton = new ImageButton("findTextButton", "edit-find"); auto goButton = new ImageButton("findTextButton", "edit-find");
goButton.onClickListener = &onFindButtonPressed; goButton.click = &onFindButtonPressed;
_layout.addChild(goButton); _layout.addChild(goButton);
_searchScope = new ComboBox("searchScope", ["File"d, "Project"d, "Dependencies"d, "Everywhere"d]); _searchScope = new ComboBox("searchScope", ["File"d, "Project"d, "Dependencies"d, "Everywhere"d]);