diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-12 11:20:28 +0200 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-12 11:20:37 +0200 |
commit | f161620f9fec23a0027ddbea7c5de5ed20a53e8e (patch) | |
tree | 563288d46995b80c6997c5f066edaf2147906369 | |
parent | 3aecb39a18ba6d6c76a6fdb0cb2ddebd688b38d4 (diff) |
mono-examples: Do not initialize the UI component if it is not needed
-rw-r--r-- | reference/csharp/core/src/core_idler.cs | 2 | ||||
-rw-r--r-- | reference/csharp/core/src/core_poll.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/reference/csharp/core/src/core_idler.cs b/reference/csharp/core/src/core_idler.cs index 458a15d0..0027526f 100644 --- a/reference/csharp/core/src/core_idler.cs +++ b/reference/csharp/core/src/core_idler.cs | |||
@@ -41,6 +41,6 @@ public class Example : Efl.Csharp.Application | |||
41 | public static void Main() | 41 | public static void Main() |
42 | { | 42 | { |
43 | var example = new Example(); | 43 | var example = new Example(); |
44 | example.Launch(); | 44 | example.Launch(Efl.Csharp.Components.Basic); |
45 | } | 45 | } |
46 | } | 46 | } |
diff --git a/reference/csharp/core/src/core_poll.cs b/reference/csharp/core/src/core_poll.cs index 9f233c19..eb887863 100644 --- a/reference/csharp/core/src/core_poll.cs +++ b/reference/csharp/core/src/core_poll.cs | |||
@@ -40,6 +40,6 @@ public class Example : Efl.Csharp.Application | |||
40 | public static void Main() | 40 | public static void Main() |
41 | { | 41 | { |
42 | var example = new Example(); | 42 | var example = new Example(); |
43 | example.Launch(); | 43 | example.Launch(Efl.Csharp.Components.Basic); |
44 | } | 44 | } |
45 | } | 45 | } |