Changeset 255
- Timestamp:
- 06/13/07 20:35:47 (1 year ago)
- Files:
-
- trunk/src/leds/LanguageD.d (modified) (3 diffs)
- trunk/src/property/Props.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/leds/LanguageD.d
r252 r255 646 646 int id = compilethread.id; 647 647 debug(flow ) writefln("LanguageD.checkSintax 10"); 648 compilethread.start(); 648 //compilethread.start(); 649 compilethread.noThread(); 649 650 debug(flow ) writefln("LanguageD.checkSintax 11"); 650 char[] res ;651 char[] res = getCompileCompleted(id); 651 652 while( res is null) 652 653 { 654 debug(flow ) writefln("LanguageD.checkSintax 11.1"); 653 655 if (GtkD.eventsPending()) 654 656 { 657 debug(flow ) writefln("LanguageD.checkSintax 11.2"); 655 658 GtkD.mainIteration(); 656 } 659 debug(flow ) writefln("LanguageD.checkSintax 11.3"); 660 } 661 debug(flow ) writefln("LanguageD.checkSintax 11.4"); 657 662 res = getCompileCompleted(id); 658 } 663 debug(flow ) writefln("LanguageD.checkSintax 11.5"); 664 } 665 debug(flow ) writefln("LanguageD.checkSintax 11.6"); 666 659 667 // display the results. 660 668 codeview.clearErrors(); … … 714 722 int run() 715 723 { 724 noThread(); 725 return 1; 726 } 727 728 void noThread() 729 { 716 730 writefln("running %s", cmd.toString()); 717 731 Spawn spawn = new Spawn(cmd.toString()); … … 720 734 writefln("completed %s", spawn.getOutputString()); 721 735 flagCompileCompleted(id, spawn.getOutputString()); 722 return 1;723 736 } 724 737 trunk/src/property/Props.d
r242 r255 18 18 19 19 module property.Props; 20 21 //debug = target; 22 //debug = help; 20 23 21 24 private import dool.String; … … 104 107 this.tabName = tabName; 105 108 this.helpText = helpText.dup; 109 debug(target) 106 110 if ( name == "target") 107 111 { … … 109 113 // assert(helpText == "To create a new target click 'new'"); 110 114 } 115 debug(help) 111 116 if ( helpText !is null && helpText.length > 0) 112 117 {
