summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index fce731b9a..5e1b1546f 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1886,11 +1886,6 @@ mch_settitle(title, icon)
if (gui.in_use)
type = 1;
# endif
-# ifdef FEAT_GUI_BEOS
- /* TODO: If this means (gui.in_use) why not merge with above? (Dany) */
- /* we always have a 'window' */
- type = 1;
-# endif
#endif
/*
@@ -1920,7 +1915,7 @@ mch_settitle(title, icon)
# endif
set_x11_title(title); /* x11 */
#endif
-#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_BEOS) \
+#if defined(FEAT_GUI_GTK) \
|| defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
else
gui_mch_settitle(title, icon);
@@ -2762,9 +2757,7 @@ mch_exit(r)
ml_close_all(TRUE); /* remove all memfiles */
may_core_dump();
#ifdef FEAT_GUI
-# ifndef FEAT_GUI_BEOS /* BeOS always has GUI */
if (gui.in_use)
-# endif
gui_exit(r);
#endif
#ifdef __QNX__