Removed handle error message function from ProfWin

This commit is contained in:
James Booth
2014-01-08 20:27:18 +00:00
parent d99f1536ec
commit 4cc4461c0f
6 changed files with 55 additions and 124 deletions

View File

@@ -341,7 +341,7 @@ _ui_handle_error_message(const char * const from, const char * const err_msg)
cons_show_error("Unknown error received from service.");
} else {
ProfWin *current = wins_get_current();
gboolean handled = current->handle_error_message(current, from, err_msg);
gboolean handled = win_handle_error_message(current, from, err_msg);
if (handled != TRUE) {
cons_show_error("Error received from server: %s", err_msg);
}