summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/browser.c2
-rw-r--r--desktop/gui.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index c3432bef8..b71d3ffd4 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -694,7 +694,7 @@ nserror browser_window_create(enum browser_window_create_flags flags,
struct browser_window *ret;
/* Check parameters */
- if (flags & (BW_CREATE_TAB | BW_CREATE_CLONE)) {
+ if (flags & BW_CREATE_CLONE) {
if (existing == NULL) {
assert(0 && "Failed: No existing window provided.");
return NSERROR_BAD_PARAMETER;
diff --git a/desktop/gui.h b/desktop/gui.h
index a19f30115..21dd85e68 100644
--- a/desktop/gui.h
+++ b/desktop/gui.h
@@ -95,8 +95,7 @@ struct gui_window_table {
* \param flags flags for gui window creation
* \return gui window, or NULL on error
*
- * If GW_CREATE_CLONE or GW_CREATE_TAB flags are set, existing is
- * non-NULL.
+ * If GW_CREATE_CLONE flag is set existing is non-NULL.
*
* Front end's gui_window must include a reference to the
* browser window passed in the bw param.