- Timestamp:
- Jul 23, 2009, 12:53:57 AM (16 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- ba6c8bd
- Parents:
- 029a8b5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
context.c
rd43edd2 r4d86e06 70 70 void owl_context_set_popless(owl_context *ctx, owl_viewwin *vw) 71 71 { 72 ctx->data = (void*)vw;72 ctx->data = vw; 73 73 SET_ACTIVE(ctx, OWL_CTX_POPLESS); 74 74 } … … 81 81 void owl_context_set_editmulti(owl_context *ctx, owl_editwin *ew) 82 82 { 83 ctx->data = (void*)ew;83 ctx->data = ew; 84 84 SET_ACTIVE(ctx, OWL_CTX_EDITMULTI); 85 85 } … … 87 87 void owl_context_set_editline(owl_context *ctx, owl_editwin *ew) 88 88 { 89 ctx->data = (void*)ew;89 ctx->data = ew; 90 90 SET_ACTIVE(ctx, OWL_CTX_EDITLINE); 91 91 } … … 93 93 void owl_context_set_editresponse(owl_context *ctx, owl_editwin *ew) 94 94 { 95 ctx->data = (void*)ew;95 ctx->data = ew; 96 96 SET_ACTIVE(ctx, OWL_CTX_EDITRESPONSE); 97 97 }
Note: See TracChangeset
for help on using the changeset viewer.