From a870179988b8881b04126856105f0fad2cc0018d Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 5 Sep 2021 19:24:02 -0400 Subject: [PATCH] links --- simpledisplay.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index a01d709..1d17502 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -6045,7 +6045,7 @@ version(Windows) { return id; } - /// Platform-specific for Windows. Unregisters a key. The id is the value returned by `registerHotKey`. + /// Platform-specific for Windows. Unregisters a key. The id is the value returned by [registerHotKey]. void unregisterHotKey(SimpleWindow window, int id) { if(!UnregisterHotKey(window.impl.hwnd, id)) throw new Exception("UnregisterHotKey"); @@ -8794,7 +8794,7 @@ interface CapableOfBeingDrawnUpon { TrueColorImage takeScreenshot(); } -/// Flushes any pending gui buffers. Necessary if you are using with_eventloop with X - flush after you create your windows but before you call `loop()`. +/// Flushes any pending gui buffers. Necessary if you are using with_eventloop with X - flush after you create your windows but before you call [arsd.eventloop.loop]. void flushGui() { version(X11) { auto dpy = XDisplayConnection.get();