Skip to content

Commit

Permalink
Merge pull request #7 from tmyt/hotfix/invalid_variant
Browse files Browse the repository at this point in the history
IApplicationView* should be handled as IntPtr.
  • Loading branch information
Grabacr07 committed Apr 27, 2016
2 parents afa06df + a473d6c commit 31c1b9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -16,7 +16,7 @@ public interface IVirtualDesktopNotification

void VirtualDesktopDestroyed(IVirtualDesktop pDesktopDestroyed, IVirtualDesktop pDesktopFallback);

void ViewVirtualDesktopChanged(object pView);
void ViewVirtualDesktopChanged(IntPtr pView);

void CurrentVirtualDesktopChanged(IVirtualDesktop pDesktopOld, IVirtualDesktop pDesktopNew);
}
Expand Down
Expand Up @@ -74,7 +74,7 @@ void IVirtualDesktopNotification.VirtualDesktopDestroyed(IVirtualDesktop pDeskto
Destroyed?.Invoke(this, args);
}

void IVirtualDesktopNotification.ViewVirtualDesktopChanged(object pView)
void IVirtualDesktopNotification.ViewVirtualDesktopChanged(IntPtr pView)
{
ApplicationViewChanged?.Invoke(this, EventArgs.Empty);
}
Expand Down

0 comments on commit 31c1b9f

Please sign in to comment.