Browse Source

fix naming

pull/6779/head
Jumar Macato 5 years ago
parent
commit
1a9558a28a
No known key found for this signature in database GPG Key ID: 85076C4D9D3155A3
  1. 6
      src/Avalonia.X11/XEmbedTrayIconImpl.cs

6
src/Avalonia.X11/XEmbedTrayIconImpl.cs

@ -11,17 +11,17 @@ namespace Avalonia.X11
{
}
private bool IsCalled;
private bool _isCalled;
private void NotImplemented()
{
if(IsCalled) return;
if(_isCalled) return;
Logger.TryGet(LogEventLevel.Error, LogArea.X11Platform)
?.Log(this,
"TODO: XEmbed System Tray Icons is not implemented yet. Tray icons won't be available on this system.");
IsCalled = true;
_isCalled = true;
}
public void Dispose()

Loading…
Cancel
Save