chiark / gitweb /
Initial checkin
[clg] / gtk / gtkaction.lisp
index 5860e2bcc33c1a82ca2c89f573c88f88b866779d..c004acdfa722a48a634a4112371c4e4df15aaf5d 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: gtkaction.lisp,v 1.5 2005-04-23 16:48:52 espen Exp $
+;; $Id: gtkaction.lisp,v 1.7 2006-02-05 12:54:55 espen Exp $
 
 
 (in-package "GTK")
@@ -85,7 +85,7 @@ (defbinding action-group-remove-action () nil
 
 (defmethod initialize-instance ((action radio-action) &key group)
   (call-next-method)
-  (setf (slot-value action 'self) (sap-int (proxy-location action)))
+  (setf (slot-value action 'self) (sap-int (foreign-location action)))
   (when group
     (add-to-radio-group action group)))
 
@@ -112,7 +112,7 @@ (defbinding (radio-action-get-current "gtk_radio_action_get_current_value")
   (radio-action radio-action))
 
 (defun radio-action-get-current-value (action)
-  (radio-value-action (radio-action-get-current action)))
+  (radio-action-value (radio-action-get-current action)))