Index: uspace/app/edit/search_impl.h
===================================================================
--- uspace/app/edit/search_impl.h	(revision c80be58a26efdf2f8b80757c67a3bf08f80ab522)
+++ uspace/app/edit/search_impl.h	(revision 041b026be4543502c8e624137bc93ee91fb5d06e)
@@ -40,5 +40,5 @@
 
 /** Search state */
-typedef struct search {
+struct search {
 	/* Note: This structure is opaque for the user. */
 
@@ -49,5 +49,5 @@
 	void *client_data;
 	search_ops_t ops;
-} search_t;
+};
 
 #endif
Index: uspace/app/edit/sheet_impl.h
===================================================================
--- uspace/app/edit/sheet_impl.h	(revision c80be58a26efdf2f8b80757c67a3bf08f80ab522)
+++ uspace/app/edit/sheet_impl.h	(revision 041b026be4543502c8e624137bc93ee91fb5d06e)
@@ -40,5 +40,5 @@
 
 /** Sheet */
-typedef struct sheet {
+struct sheet {
 	/* Note: This structure is opaque for the user. */
 
@@ -48,5 +48,5 @@
 
 	list_t tags;
-} sheet_t;
+};
 
 #endif
