chiark / gitweb /
Bug fix
authorespen <espen>
Thu, 12 Jul 2007 13:13:34 +0000 (13:13 +0000)
committerespen <espen>
Thu, 12 Jul 2007 13:13:34 +0000 (13:13 +0000)
gtk/gtk.lisp

index 2d8440bcd5e21b00bed507c55b49172b610f61dc..c30f6727a8b2529efc5ba1284f9eec586fa2d6a8 100644 (file)
@@ -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: gtk.lisp,v 1.79 2007/07/12 09:02:13 espen Exp $
+;; $Id: gtk.lisp,v 1.80 2007/07/12 13:13:34 espen Exp $
 
 
 (in-package "GTK")
@@ -826,7 +826,7 @@ (defmethod compute-signal-function ((dialog dialog) signal function object args)
       #'(lambda (dialog response)
          (when (= response id)
            (funcall callback dialog))))
-     ((eq signal 'response)
+     ((string-equal signal "response")
       #'(lambda (dialog response)        
          (funcall callback dialog (dialog-find-response dialog response))))
      (callback))))