From 381d1da76043a6b37d9c7715ba6c211ec5d113b4 Mon Sep 17 00:00:00 2001 Message-Id: <381d1da76043a6b37d9c7715ba6c211ec5d113b4.1716520380.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 29 Feb 2012 17:06:44 +0000 Subject: [PATCH] Explicitly name GProxy as network-proxy Organization: Straylight/Edgeware From: Rupert Swarbrick We already have a class in the namespace called proxy, so bad things were happening. --- gio/gio.lisp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gio/gio.lisp b/gio/gio.lisp index 3d23fa8..991cabf 100644 --- a/gio/gio.lisp +++ b/gio/gio.lisp @@ -35,7 +35,8 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (define-types-in-library gio "libgio-2.0" ("GIOErrorEnum" :type io-error) - ("GIOModule" :ignore t)) + ("GIOModule" :ignore t) + ("GProxy" :type network-proxy)) (define-types-in-library gio "gio-alien") -- [mdw]