Fixed the core issue (nil was not working as return value of a factory method)

This commit is contained in:
Matthias Koefferlein
2026-08-25 20:36:29 +02:00
parent 3c669eb5eb
commit a6900e091e
4 changed files with 26 additions and 1 deletions
+10
View File
@@ -76,3 +76,13 @@ class RBAGFactory < RBA::GFactory
end
end
class RBANilGFactory < RBA::GFactory
def initialize
super()
end
# reimplementation of "virtual GObject *f(int)"
def f(z)
return nil
end
end