Browse Source

Fix IActivatableApplicationLifetime definition (#14400)

* Fix IActivatableApplicationLifetime definition

* Remove ": IApplicationLifetime" for now, as API is going to change in future
pull/14430/head
Max Katz 2 years ago
committed by GitHub
parent
commit
140236950d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/Avalonia.Controls/ApplicationLifetimes/IActivatableApplicationLifetime.cs

2
src/Avalonia.Controls/ApplicationLifetimes/IActivatableApplicationLifetime.cs

@ -1,10 +1,12 @@
using System; using System;
using Avalonia.Metadata;
namespace Avalonia.Controls.ApplicationLifetimes; namespace Avalonia.Controls.ApplicationLifetimes;
/// <summary> /// <summary>
/// An interface for ApplicationLifetimes where the application can be Activated and Deactivated. /// An interface for ApplicationLifetimes where the application can be Activated and Deactivated.
/// </summary> /// </summary>
[NotClientImplementable]
public interface IActivatableApplicationLifetime public interface IActivatableApplicationLifetime
{ {
/// <summary> /// <summary>

Loading…
Cancel
Save