Newsgroups: comp.lang.lisp.mcl
Path: cantaloupe.srv.cs.cmu.edu!rochester!udel!news.mathworks.com!newsfeed.internetmci.com!nntp-hub2.barrnet.net!pacbell.com!gw2.att.com!oucsboss!oucsace.cs.ohiou.edu!sbuhr
From: sbuhr@oucsace.cs.ohiou.edu (Steven Buhr)
Subject: typein-menu weirdness
X-Nntp-Posting-Host: oucsace.cs.ohiou.edu
Message-ID: <DDq4GL.9u5@boss.cs.ohiou.edu>
Sender: postmaster@oucsace.cs.ohiou.edu
X-Nntp-Posting-Date: Tue Aug 22 13:55:31 1995
Organization: Ohio University CS Dept,. Athens
Date: Tue, 22 Aug 1995 17:55:33 GMT
Lines: 16

I'm trying to write a function that would put a typein-menu item in a
dialog box.  The problem arises when I use add-menu-items in a do loop.

(dolist (title (list-of-values object))            
        (add-menu-items item-menu                       
                        (make-instance 'typein-menu-item 
                          :menu-item-title title)))
    (add-subviews win item-menu)))

item-menu = is the name of the typein-menu

When this fires through I get a can't FIND-CLASS typein-menu-item error. 
I've tried everything I can thick of with packages and importing in, but
nothing seems to work.  Any clues to what is happening.  Thanks.

-Steve
