From c1085580ed22aa332bebe327e845f4a4acf4d86b Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Sun, 22 Sep 2013 03:10:12 +0200 Subject: Fixed warnings for incomptible pointer type The API expects to receive core_window as window handle now. --- atari/certview.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'atari/certview.h') diff --git a/atari/certview.h b/atari/certview.h index 642e55ede..fc30074f7 100644 --- a/atari/certview.h +++ b/atari/certview.h @@ -33,7 +33,8 @@ struct core_window; struct atari_sslcert_viewer_s { GUIWIN * window; - struct atari_treeview_window *tv;/*< The hotlist treeview handle. */ + //struct atari_treeview_window *tv;/*< The hotlist treeview handle. */ + struct core_window *tv; struct sslcert_session_data *ssl_session_data; bool init; }; @@ -45,10 +46,6 @@ struct atari_sslcert_viewer_s { * The window takes ownership of the session data and free's the memory on exit. */ void atari_sslcert_viewer_open(struct sslcert_session_data *ssl_d); -/* -void atari_sslcert_viewer_close(void); -void atari_sslcert_viewer_destroy(void); -void atari_sslcert_viewer_redraw(void); -*/ + #endif // CERTVIEW_H_INCLUDED -- cgit v1.2.3