rename clipboard_received to clipboard

This commit is contained in:
Nishi 2025-12-31 04:35:10 +09:00
commit 72820e87f1
Signed by: nishi
GPG key ID: 27EF69B208EB9343
28 changed files with 58 additions and 54 deletions

View file

@ -147,7 +147,7 @@ struct _MwLLHandler {
void (*key_released)(MwLL handle, void* data);
void (*focus_in)(MwLL handle, void* data);
void (*focus_out)(MwLL handle, void* data);
void (*clipboard_received)(MwLL handle, void* data);
void (*clipboard)(MwLL handle, void* data);
};
#ifdef __cplusplus

View file

@ -71,5 +71,6 @@
#define MwNdirectoryChosenHandler "CdirectoryChosen" /* char* */
#define MwNcolorChosenHandler "CcolorChosen" /* MwRGB* */
#define MwNdrawHandler "Cdraw" /* NULL */
#define MwNclipboardHandler "Cclipboard" /* char* */
#endif

View file

@ -212,7 +212,7 @@ struct _MwClass {
MwHandler resize;
MwHandler children_update;
MwHandlerChildrenProp children_prop_change;
MwHandlerClipboardReceived clipboard_received;
MwHandlerClipboardReceived clipboard;
void* reserved1;
void* reserved2;
void* reserved3;