Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (526 - 528 of 1030)

Ticket Resolution Summary Owner Reporter
#615 fixed Search Files tool crashes when used twice in a row Glen Foy
Description

There was an obvious array reference error in #/updateResults: which the code below fixes. The call to expand-all-results also occasionally caused an error (??), so I've commented it out.

This is not the same problem as ticket #456

From ccl/cocoa-ide/search-files.lisp

(objc:defMethod (#/updateResults: :void) ((wc search-files-window-controller)

msg)

(let* ((old-results (search-results wc)))

(setf (search-results wc) (new-results wc)) ;; release NSString instances. sigh. (dotimes (idx (length old-results))

(let* ((file (aref old-results idx))

(lines (when file (search-result-file-lines file))))

(dotimes (idx (length lines))

(let* ((line (aref lines idx))

(string (when line (search-result-line-nsstr line))))

(and string (#/release string))))

(and (search-result-file-nsstr file)

(#/release (search-result-file-nsstr file)))))

(set-results-string wc msg)

; (when (or (auto-expandable-p (search-results wc)) ; (expand-results-p wc)) ; (expand-all-results wc))

(#/reloadData (outline-view wc)) (#/setEnabled: (search-button wc) t)))

#434 invalid Search files dialog gz mkassoff
Description

A simple grep dialog, ala MCL. I used this all the time!

#901 fixed Search files dialog, uncheck "Search Comments" bug p2
Description

On unchecking the Search files Search Comments check box, I'm thrown to the Altconsole with

Error: Unknown checkbox #<NS-BUTTON <NSButton: 0x1166780> (#x1166780)>

While executing: (:INTERNAL GUI::toggleCheckbox:|), in process Initial(0).

1.8-dev-r15113M-trunk (DarwinX8664)

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.