summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-01-09 08:39:02 +0100
committerDave Davenport <qball@gmpclient.org>2017-01-09 08:39:02 +0100
commit5188e36147010c22c3fc5041e7a82f3f1a7c9e3f (patch)
tree8309344d59cbda00b35550a846d64b9a15d2b6fe /include
parentf42e4ffbd7b19723eb2ffeab744ed3b6724b056c (diff)
Remove unused functions and other small fixes
Diffstat (limited to 'include')
-rw-r--r--include/widgets/box.h10
-rw-r--r--include/widgets/widget.h8
2 files changed, 0 insertions, 18 deletions
diff --git a/include/widgets/box.h b/include/widgets/box.h
index 2c067598..f2cb7fe9 100644
--- a/include/widgets/box.h
+++ b/include/widgets/box.h
@@ -48,15 +48,5 @@ box * box_create ( const char *name, boxType type );
* Add a widget to the box.
*/
void box_add ( box *box, widget *child, gboolean expand, int index );
-
-/**
- * @param box Handle to the box widget.
- *
- * Obtains the minimal size required to display all widgets. (expanding widgets are not counted, except for their
- * spacing)
- *
- * @returns the minimum size in pixels.
- */
-int box_get_fixed_pixels ( box *box );
/*@}*/
#endif // ROFI_HBOX_H
diff --git a/include/widgets/widget.h b/include/widgets/widget.h
index 89869770..955d939e 100644
--- a/include/widgets/widget.h
+++ b/include/widgets/widget.h
@@ -176,14 +176,6 @@ gboolean widget_motion_notify ( widget *wid, xcb_motion_notify_event_t *xme );
/**
* @param wid The widget handle
- * @param name The name of the widget.
- *
- * Set name on widget.
- */
-void widget_set_name ( widget *wid, const char *name );
-
-/**
- * @param wid The widget handle
*
* Get the desired height of this widget recursively.
*