From: espen Date: Fri, 15 Sep 2006 12:46:30 +0000 (+0000) Subject: Updated due to API X-Git-Tag: clg-0-93~238 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/4fbbbd0ed2e2fd9656bf7648ba0e1817b2f4c79c?hp=0dd89936e997a929518902e7f1b0f32f85e76990 Updated due to API --- diff --git a/examples/ginspect.lisp b/examples/ginspect.lisp index 7a65167..bcc835a 100644 --- a/examples/ginspect.lisp +++ b/examples/ginspect.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: ginspect.lisp,v 1.13 2006/09/06 11:43:41 espen Exp $ +;; $Id: ginspect.lisp,v 1.14 2006/09/15 12:46:30 espen Exp $ #+sbcl(require :gtk) #+(or cmu clisp)(asdf:oos 'asdf:load-op :gtk) @@ -60,9 +60,9 @@ (object (make-instance 'cell-renderer-text))) (tree-view-append-column view column) (cell-layout-pack column name :expand nil) - (cell-layout-add-attribute column name 'text (column-index store 'name)) + (cell-layout-add-attribute column name :text (tree-model-column-index store 'name)) (cell-layout-pack column object :expand t) - (cell-layout-add-attribute column object 'text (column-index store 'pprinted))) + (cell-layout-add-attribute column object :text (tree-model-column-index store 'pprinted))) (insert-object object store nil)