Changeset 396
- Timestamp:
- 09/23/08 19:54:01 (4 months ago)
- Files:
-
- jasko.tim.lisp/changes.log (modified) (1 diff)
- jasko.tim.lisp/src/jasko/tim/lisp/views/ThreadView.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/changes.log
r388 r396 50 50 - Fixed couple bugs in Compile on save mode. 51 51 - Profiler now is a little bit more intuitive (little tweak) 52 - Updated Threads View to suppply more information 52 53 - Improved debugger: 53 54 - Forcing the debug label not to exceed 50px in height jasko.tim.lisp/src/jasko/tim/lisp/views/ThreadView.java
r375 r396 39 39 col1.setText("Thread"); 40 40 col1.setWidth(200); 41 TreeColumn col2 = new TreeColumn(threadTree, SWT. RIGHT);41 TreeColumn col2 = new TreeColumn(threadTree, SWT.LEFT); 42 42 col2.setText("Status"); 43 43 col2.setWidth(200); 44 TreeColumn col3 = new TreeColumn(threadTree, SWT.LEFT); 45 col3.setText("Location"); 46 col3.setWidth(200); 44 47 45 48 fillToolBar(parent); … … 129 132 public void run() { 130 133 threadTree.removeAll(); 131 LispNode threads = result.getf(":return").getf(":ok");134 LispNode threads = this.getReturn(); 132 135 for (int i=0; i < threads.params.size(); ++i) { 133 136 LispNode thread = threads.get(i); 134 137 135 String name = thread.get(0).value; 136 String status = thread.get(1).value; 137 String num = thread.get(2).value; 138 String num = thread.get(0).value; 139 String name = thread.get(1).value; 140 String status = thread.get(2).value; 141 String location = thread.get(3).value; 138 142 139 143 TreeItem item = new TreeItem(threadTree, 0); 140 item.setText(new String[] {num, name, status });144 item.setText(new String[] {num, name, status, location}); 141 145 item.setData(i); 142 146 }
