summaryrefslogtreecommitdiff
path: root/Ivy/IvyApplicationBinding.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy/IvyApplicationBinding.cs')
-rw-r--r--Ivy/IvyApplicationBinding.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ivy/IvyApplicationBinding.cs b/Ivy/IvyApplicationBinding.cs
index b8932c8..d282583 100644
--- a/Ivy/IvyApplicationBinding.cs
+++ b/Ivy/IvyApplicationBinding.cs
@@ -147,7 +147,7 @@ namespace IvyBus
temp(this, e);
}
#else
- internal void Firevent(System.Threading.SynchronizationContext syncContext, IvyMessageEventArgs e)
+ internal void Firevent(System.Threading.SynchronizationContext syncContext, bool synchronous , IvyMessageEventArgs e)
{
//// Safely invoke an event:
EventHandler<IvyMessageEventArgs> temp = Callback;
@@ -156,7 +156,7 @@ namespace IvyBus
{
throw new IvyException("(callCallback) Not callback for id " + e.Id);
}
- if (syncContext != null)
+ if (synchronous )
{
SendOrPostCallback update = delegate(object state)
{