Undo parentheses for function symbols

This commit is contained in:
AntonC9018 2021-09-05 16:36:41 +03:00
parent 870be791f4
commit e73b26d021
1 changed files with 2 additions and 2 deletions

View File

@ -4587,7 +4587,7 @@ class NotificationAreaIcon : CapableOfHandlingNativeEvent {
} }
version(X11) version(X11)
/// Call `XFreePixmap()` on the return value. /// Call `XFreePixmap` on the return value.
Pixmap transparencyMaskFromMemoryImage(MemoryImage i, Window window) { Pixmap transparencyMaskFromMemoryImage(MemoryImage i, Window window) {
char[] data = new char[](i.width * i.height / 8 + 2); char[] data = new char[](i.width * i.height / 8 + 2);
data[] = 0; data[] = 0;
@ -6045,7 +6045,7 @@ version(Windows) {
return id; 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) { void unregisterHotKey(SimpleWindow window, int id) {
if(!UnregisterHotKey(window.impl.hwnd, id)) if(!UnregisterHotKey(window.impl.hwnd, id))
throw new Exception("UnregisterHotKey"); throw new Exception("UnregisterHotKey");