]> gitweb.factorcode.org Git - factor.git/commitdiff
gtk: Fix usings
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 7 May 2023 16:54:15 +0000 (11:54 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 7 May 2023 16:54:15 +0000 (11:54 -0500)
basis/game/input/input.factor
extra/clutter/ffi/ffi.factor
extra/clutter/gtk/ffi/ffi.factor
extra/file-picker/linux/linux.factor
extra/gtk-samples/hello-world/hello-world.factor

index 3f92333cc5c719cf5c81392bc08a7e81af0f5a20..2b82e996a08a074b85582cb5093f7db72247d469 100644 (file)
@@ -109,6 +109,6 @@ SYMBOLS: pressed released ;
 {
     { [ os windows? ] [ "game.input.dinput" require ] }
     { [ os macosx? ] [ "game.input.iokit" require ] }
-    { [ os linux? ] [ "game.input.gtk" require ] }
+    { [ os linux? ] [ "game.input.gtk2" require ] }
     [ ]
 } cond
index 6bd70c83c49ef2753fca0909afeef5142d1f6d8d..f751cae08a3115c67f6a2f42c5d2143a6e94981e 100644 (file)
@@ -5,7 +5,7 @@ gobject-introspection kernel system vocabs ;
 IN: clutter.ffi
 
 <<
-"gtk" require
+"gtk2" require
 "atk.ffi" require
 "pango.cairo.ffi" require
 "clutter.cogl.ffi" require
index d37f354c7c07cf206925a92d72d5f654e1ecb82e..b05663d151870c93bff77e10d584bc0f032f7e9d 100644 (file)
@@ -6,7 +6,7 @@ IN: clutter.gtk.ffi
 
 <<
 "clutter.ffi" require
-"gtk.ffi" require
+"gtk2.ffi" require
 >>
 
 LIBRARY: clutter.gtk
index 30d5a191f2ebb89df22105f2e5f9afca89a2a4d5..27dd905e807aeb962069c09d8e9b61c4f65401ee 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2014, 2015 John Benediktsson.
 ! See https://factorcode.org/license.txt for BSD license.
 USING: accessors alien.c-types alien.strings alien.syntax destructors
-file-picker gobject-introspection.standard-types gtk.ffi
+file-picker gobject-introspection.standard-types gtk2.ffi
 io.encodings.utf8 kernel locals namespaces system ui.gadgets.worlds ;
 IN: file-picker.linux
 
index 2f482ffab74d1fe30abf11dde532b8caefee3499..e12d29fc2bcbd23ae3ef2d13ff8d1a74d521c345 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2010 Anton Gorenko.
 ! See https://factorcode.org/license.txt for BSD license.
-USING: alien.strings gobject.ffi gtk.ffi io.encodings.utf8
+USING: alien.strings gobject.ffi gtk2.ffi io.encodings.utf8
 kernel ;
 IN: gtk-samples.hello-world