Move browser_window_set_status to private header.
This commit is contained in:
parent
f1066f3a56
commit
f7f21096b3
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue