Move browser_window_set_status to private header.

This commit is contained in:
Michael Drake 2014-10-25 11:29:31 +01:00
parent f1066f3a56
commit f7f21096b3
2 changed files with 8 additions and 8 deletions

View File

@ -417,14 +417,6 @@ void browser_select_menu_callback(void *client_data,
void browser_window_redraw_rect(struct browser_window *bw, int x, int y,
int width, int height);
/**
* Change the status bar of a browser window.
*
* \param bw browser window
* \param text new status text (copied)
*/
void browser_window_set_status(struct browser_window *bw, const char *text);
/**
* Change the shape of the mouse pointer
*

View File

@ -192,4 +192,12 @@ void browser_window_get_dimensions(struct browser_window *bw,
*/
void browser_window_update_extent(struct browser_window *bw);
/**
* Change the status bar of a browser window.
*
* \param bw browser window
* \param text new status text (copied)
*/
void browser_window_set_status(struct browser_window *bw, const char *text);
#endif