Skip to content

Commit ee74e3c

Browse files
committed
Fix build issue
1 parent f6661ad commit ee74e3c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Flow.Launcher.Plugin.ClipboardPlus.Core/Data/Models/Clipboard/ClipboardHandleW.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
using Windows.Win32;
1212
using Windows.Win32.Foundation;
1313
using Application = System.Windows.Application;
14-
using Clipboard = System.Windows.Clipboard;
1514
using DataFormats = System.Windows.DataFormats;
1615
using IDataObject = System.Windows.IDataObject;
1716

@@ -192,7 +191,7 @@ private async void OnClipboardChanged()
192191
await Win32Helper.StartSTATaskAsync(() =>
193192
{
194193
// If the clipboard is empty, return.
195-
var dataObj = Clipboard.GetDataObject();
194+
var dataObj = System.Windows.Clipboard.GetDataObject();
196195
if (dataObj is null)
197196
{
198197
return;

0 commit comments

Comments
 (0)