summaryrefslogtreecommitdiff
path: root/atari/certview.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-09-22 03:10:12 +0200
committerOle Loots <ole@monochrom.net>2013-10-06 01:24:18 +0200
commitc1085580ed22aa332bebe327e845f4a4acf4d86b (patch)
treee552258e43d3e1c299e9cbedfe9f4ce25b7fe759 /atari/certview.h
parentf81fc0472293ecdb6197df2ca7a64893f9694179 (diff)
downloadnetsurf-c1085580ed22aa332bebe327e845f4a4acf4d86b.tar.gz
netsurf-c1085580ed22aa332bebe327e845f4a4acf4d86b.tar.bz2
Fixed warnings for incomptible pointer type
The API expects to receive core_window as window handle now.
Diffstat (limited to 'atari/certview.h')
-rw-r--r--atari/certview.h9
1 files changed, 3 insertions, 6 deletions
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