mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Fix compilation errors
This commit is contained in:
parent
35c98961b6
commit
d3f31ddaa7
4 changed files with 4 additions and 4 deletions
|
|
@ -49,7 +49,7 @@ internal static class DataWindowWidgetExtensions
|
|||
{
|
||||
ImGui.SetClipboardText(s);
|
||||
Service<NotificationManager>.Get().AddNotification(
|
||||
$"Copied {ImGui.TableGetColumnNameS()} to clipboard.",
|
||||
$"Copied {ImGui.TableGetColumnName()} to clipboard.",
|
||||
widget.DisplayName,
|
||||
NotificationType.Success);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ internal class DataShareWidget : IDataWindowWidget
|
|||
{
|
||||
ImGui.SetClipboardText(tooltip?.Invoke() ?? s);
|
||||
Service<NotificationManager>.Get().AddNotification(
|
||||
$"Copied {ImGui.TableGetColumnNameS()} to clipboard.",
|
||||
$"Copied {ImGui.TableGetColumnName()} to clipboard.",
|
||||
this.DisplayName,
|
||||
NotificationType.Success);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ internal class ProfileManagerWidget
|
|||
{
|
||||
try
|
||||
{
|
||||
profman.ImportProfile(ImGui.GetClipboardTextS());
|
||||
profman.ImportProfile(ImGui.GetClipboardText());
|
||||
Service<NotificationManager>.Get().AddNotification(Locs.NotificationImportSuccess, type: NotificationType.Success);
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ public class StyleEditorWindow : Window
|
|||
{
|
||||
this.SaveStyle();
|
||||
|
||||
var styleJson = ImGui.GetClipboardTextS();
|
||||
var styleJson = ImGui.GetClipboardText();
|
||||
|
||||
try
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue