mirror of https://github.com/buggins/dlangide.git
fix build error
This commit is contained in:
parent
2e5f328d31
commit
ce0ed698c2
|
@ -60,7 +60,7 @@ extern (C) int UIAppMain(string[] args) {
|
|||
debuggerTest();
|
||||
}
|
||||
version(USE_GDB_DEBUG) {
|
||||
debuggerTest();
|
||||
debuggerTestGDB();
|
||||
}
|
||||
|
||||
// create window
|
||||
|
@ -97,7 +97,7 @@ version(USE_WIN_DEBUG) {
|
|||
}
|
||||
|
||||
version(USE_GDB_DEBUG) {
|
||||
void debuggerTest() {
|
||||
void debuggerTestGDB() {
|
||||
import ddebug.gdb.gdbinterface;
|
||||
import core.thread;
|
||||
Log.d("Testing GDB debugger");
|
||||
|
|
|
@ -197,7 +197,7 @@ class SearchWidget : TabWidget {
|
|||
_layout.addChild(_findText);
|
||||
|
||||
auto goButton = new ImageButton("findTextButton", "edit-find");
|
||||
goButton.onClickListener = &onFindButtonPressed;
|
||||
goButton.click = &onFindButtonPressed;
|
||||
_layout.addChild(goButton);
|
||||
|
||||
_searchScope = new ComboBox("searchScope", ["File"d, "Project"d, "Dependencies"d, "Everywhere"d]);
|
||||
|
|
Loading…
Reference in New Issue