summaryrefslogtreecommitdiff
path: root/frontends/windows/window.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-11-19 11:54:29 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2016-11-19 11:54:29 +0000
commitc1a0001226d918571006a87dd22e13dd32f80e84 (patch)
tree2aa6736ec992ffc439edb896d38ccadec428b9ed /frontends/windows/window.c
parent076e54e1e5bfabba7cf2cba02ba13a86f3dc9ba1 (diff)
parentf3a1b49dd83f31399ae5eadfd80744d0cbdeeb0a (diff)
downloadnetsurf-c1a0001226d918571006a87dd22e13dd32f80e84.tar.gz
netsurf-c1a0001226d918571006a87dd22e13dd32f80e84.tar.bz2
Merge branch 'vince/win32-corewindow'
Diffstat (limited to 'frontends/windows/window.c')
-rw-r--r--frontends/windows/window.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/frontends/windows/window.c b/frontends/windows/window.c
index b8c2b39a3..94dc7c10e 100644
--- a/frontends/windows/window.c
+++ b/frontends/windows/window.c
@@ -50,6 +50,9 @@
#include "windows/font.h"
#include "windows/prefs.h"
#include "windows/localhistory.h"
+#include "windows/hotlist.h"
+#include "windows/cookies.h"
+#include "windows/global_history.h"
#include "windows/window.h"
/** List of all our gui windows */
@@ -1130,6 +1133,15 @@ nsws_window_command(HWND hwnd,
break;
case IDM_NAV_GLOBALHISTORY:
+ nsw32_global_history_present(hinst);
+ break;
+
+ case IDM_TOOLS_COOKIES:
+ nsw32_cookies_present(hinst);
+ break;
+
+ case IDM_NAV_BOOKMARKS:
+ nsw32_hotlist_present(hinst);
break;
case IDM_VIEW_ZOOMPLUS:
@@ -1197,7 +1209,7 @@ nsws_window_command(HWND hwnd,
break;
}
- case IDM_VIEW_DOWNLOADS:
+ case IDM_TOOLS_DOWNLOADS:
break;
case IDM_VIEW_TOGGLE_DEBUG_RENDERING: