Changeset 55edba0 in mainline for uspace/app/edit
- Timestamp:
- 2013-06-11T14:20:41Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f81498d
- Parents:
- 445e7c0
- Location:
- uspace/app/edit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/edit/search_impl.h
r445e7c0 r55edba0 40 40 41 41 /** Search state */ 42 typedefstruct search {42 struct search { 43 43 /* Note: This structure is opaque for the user. */ 44 44 … … 49 49 void *client_data; 50 50 search_ops_t ops; 51 } search_t;51 }; 52 52 53 53 #endif -
uspace/app/edit/sheet_impl.h
r445e7c0 r55edba0 40 40 41 41 /** Sheet */ 42 typedefstruct sheet {42 struct sheet { 43 43 /* Note: This structure is opaque for the user. */ 44 44 … … 48 48 49 49 list_t tags; 50 } sheet_t;50 }; 51 51 52 52 #endif
Note:
See TracChangeset
for help on using the changeset viewer.