measure line properly
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
This commit is contained in:
parent
833947c1ec
commit
ca703f24d5
3 changed files with 53 additions and 17 deletions
|
|
@ -211,7 +211,7 @@ static MwWidget MwCreateWidget_Internal(MwClass widget_class, const char* name,
|
|||
|
||||
h->internal = NULL;
|
||||
h->opaque = NULL;
|
||||
h->user = NULL;
|
||||
h->user = NULL;
|
||||
|
||||
h->top_step = 0;
|
||||
h->draw_queue = NULL;
|
||||
|
|
@ -1068,10 +1068,10 @@ void MwGetClipboard(MwWidget handle, int clipboard_type) {
|
|||
MwLLGetClipboard(handle->lowlevel, clipboard_type);
|
||||
}
|
||||
|
||||
void MwSetUser(MwWidget handle, void* user){
|
||||
void MwSetUser(MwWidget handle, void* user) {
|
||||
handle->user = user;
|
||||
}
|
||||
|
||||
void* MwGetUser(MwWidget handle){
|
||||
void* MwGetUser(MwWidget handle) {
|
||||
return handle->user;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue