mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
Normalize names
This commit is contained in:
parent
a4a990cf3d
commit
a1e2473774
2 changed files with 34 additions and 34 deletions
|
|
@ -19,17 +19,17 @@ public static class NotificationUtilities
|
|||
{
|
||||
/// <inheritdoc cref="INotificationIcon.From(SeIconChar)"/>
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static INotificationIcon ToIconSource(this SeIconChar iconChar) =>
|
||||
public static INotificationIcon ToNotificationIcon(this SeIconChar iconChar) =>
|
||||
INotificationIcon.From(iconChar);
|
||||
|
||||
/// <inheritdoc cref="INotificationIcon.From(FontAwesomeIcon)"/>
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static INotificationIcon ToIconSource(this FontAwesomeIcon iconChar) =>
|
||||
public static INotificationIcon ToNotificationIcon(this FontAwesomeIcon iconChar) =>
|
||||
INotificationIcon.From(iconChar);
|
||||
|
||||
/// <inheritdoc cref="INotificationIcon.FromFile(string)"/>
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
public static INotificationIcon ToIconSource(this FileInfo fileInfo) =>
|
||||
public static INotificationIcon ToNotificationIcon(this FileInfo fileInfo) =>
|
||||
INotificationIcon.FromFile(fileInfo.FullName);
|
||||
|
||||
/// <summary>Draws an icon from an <see cref="IFontHandle"/> and a <see cref="char"/>.</summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue