Index: uspace/lib/gui/widget.h
===================================================================
--- uspace/lib/gui/widget.h	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/gui/widget.h	(revision 4f8772d4d5ecb28999d787aebab937222f9f97d8)
@@ -72,5 +72,6 @@
 	 * Virtual destructor. Apart from deallocating the resources specific for
 	 * the particular widget, each widget shall remove itself from parents
-	 * children and deallocate itself. */
+	 * children and deallocate itself.
+	 */
 	void (*destroy)(widget_t *);
 
@@ -82,5 +83,6 @@
 	 * to be changed. If not, widget shall calculate new layout for its children
 	 * and call rearrange() on each of them. Otherwise, widget shall change its
-	 * own properties and call reconfigure() on its parent. */
+	 * own properties and call reconfigure() on its parent.
+	 */
 	void (*reconfigure)(widget_t *);
 
@@ -90,5 +92,6 @@
 	 * position and size according to provided arguments, paint itself,
 	 * calculate new layout for its children and call rearrange() on each
-	 * of them. */
+	 * of them.
+	 */
 	void (*rearrange)(widget_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t);
 
@@ -97,5 +100,6 @@
 	 * in top-bottom order and repaint() is called on each widget. Widget shall
 	 * either paint itself or copy its private buffer onto window surface.
-	 * Widget shall also post damage event into window event loop. */
+	 * Widget shall also post damage event into window event loop.
+	 */
 	void (*repaint)(widget_t *);
 
@@ -104,5 +108,6 @@
 	 * reaction to the event, widget might call reconfigure() on its parent or
 	 * rearrange() on its children. If the widget wants to change its visual
-	 * information, refresh event should be posted to the window event loop. */
+	 * information, refresh event should be posted to the window event loop.
+	 */
 	void (*handle_keyboard_event)(widget_t *, kbd_event_t);
 
@@ -114,5 +119,6 @@
 	 * should be posted to the window event loop. If the widget accepts
 	 * keyboard events, it should take ownership of keyboard focus. Widget can
-	 * also acquire or release mouse grab. */
+	 * also acquire or release mouse grab.
+	 */
 	void (*handle_position_event)(widget_t *, pos_event_t);
 };
