vitorsousa pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=0afd19ba62f38567c12cb1bf953ffdd4d402f382

commit 0afd19ba62f38567c12cb1bf953ffdd4d402f382
Author: Felipe Magno de Almeida <fel...@expertisesolutions.com.br>
Date:   Tue Apr 9 18:37:01 2019 -0300

    efl-mono: Add test and fix problem with private dynamic types passed as 
parameters
    
    Summary:
    The code that searches the type dynamically fails instead of falling
    back to Efl.Object. Now it fallbacks to Efl.Object.
    
    Fixes T7783
    
    Reviewers: bu5hm4n, vitor.sousa, segfaultxavi, woohyun, Jaehyun_Cho, 
YOhoho, lauromoura
    
    Reviewed By: vitor.sousa, lauromoura
    
    Subscribers: lauromoura, cedric, #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T7783
    
    Differential Revision: https://phab.enlightenment.org/D8574
---
 src/bindings/mono/eo_mono/iwrapper.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bindings/mono/eo_mono/iwrapper.cs 
b/src/bindings/mono/eo_mono/iwrapper.cs
index 83d8fd53ca..5850da8c5c 100644
--- a/src/bindings/mono/eo_mono/iwrapper.cs
+++ b/src/bindings/mono/eo_mono/iwrapper.cs
@@ -824,7 +824,7 @@ public static class ClassRegister
 
             if (t == null)
             {
-                throw new System.InvalidOperationException($"Could not find 
the C# binding class for the EFL class: {name}");
+                return typeof(Efl.Object);
             }
         }
 

-- 


Reply via email to