jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=66c485d232bc2952d473fd7c877c952588a17ce6

commit 66c485d232bc2952d473fd7c877c952588a17ce6
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Mon Jan 13 20:43:22 2020 +0900

    eolian_mono: add missing tabs to apply indentation
    
    Missing tabs are added to apply indentation.
---
 src/bin/eolian_mono/eolian/mono/events.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/eolian_mono/eolian/mono/events.hh 
b/src/bin/eolian_mono/eolian/mono/events.hh
index 2b85c7e1a0..2acfcbb4b5 100644
--- a/src/bin/eolian_mono/eolian/mono/events.hh
+++ b/src/bin/eolian_mono/eolian/mono/events.hh
@@ -229,7 +229,7 @@ struct pack_event_info_and_call_visitor
       return as_generator(
                           indent.inc() << "Contract.Requires(e != null, 
nameof(e));\n"
                           << indent.inc() << "IntPtr info = 
e.arg.NativeHandle;\n"
-                          << "CallNativeEventCallback(" << library_name << ", 
\"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
+                          << indent.inc() << "CallNativeEventCallback(" << 
library_name << ", \"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
                           ).generate(sink, attributes::unused, *context);
    }
    bool operator()(attributes::complex_type_def const& type) const
@@ -241,7 +241,7 @@ struct pack_event_info_and_call_visitor
       return as_generator(
                           indent.inc() << "Contract.Requires(e != null, 
nameof(e));\n"
                           << indent.inc() << "IntPtr info = e.arg.Handle;\n"
-                          << "CallNativeEventCallback(" << library_name << ", 
\"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
+                          << indent.inc() << "CallNativeEventCallback(" << 
library_name << ", \"_" << evt_c_name << "\", IntPtr.Zero, null);\n"
                           ).generate(sink, attributes::unused, *context);
    }
 };

-- 


Reply via email to