summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-20 08:16:05 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-09-20 08:16:05 +0000
commit7756839a147ce2421cfb4e3de046364962094b60 (patch)
tree6d6c523dde3a32ad4b6c0841e6b5732717004b6b /libvo
parent0643fde0c3e40d8be813c890d5009c9d878ea83e (diff)
downloadmpv-7756839a147ce2421cfb4e3de046364962094b60.tar.bz2
mpv-7756839a147ce2421cfb4e3de046364962094b60.tar.xz
Remove already disabled and probably long obsolete code that worked around an OpenBox bug.
Patch by Julien Danjou [ julien danjou info ] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27649 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/x11_common.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c
index 4dac528361..287e0b3a0a 100644
--- a/libvo/x11_common.c
+++ b/libvo/x11_common.c
@@ -101,7 +101,6 @@ static Atom XA_NET_WM_PID;
static Atom XA_WIN_PROTOCOLS;
static Atom XA_WIN_LAYER;
static Atom XA_WIN_HINTS;
-static Atom XA_BLACKBOX_PID;
static Atom XAWM_PROTOCOLS;
static Atom XAWM_DELETE_WINDOW;
@@ -325,20 +324,6 @@ static int vo_wm_detect(void)
for (i = 0; i < nitems; i++)
wm |= net_wm_support_state_test(args[i]);
XFree(args);
-#if 0
- // ugly hack for broken OpenBox _NET_WM_STATE_FULLSCREEN support
- // (in their implementation it only changes internal window state, nothing more!!!)
- if (wm & vo_wm_FULLSCREEN)
- {
- if (x11_get_property(XA_BLACKBOX_PID, &args, &nitems))
- {
- mp_msg(MSGT_VO, MSGL_V,
- "[x11] Detected wm is a broken OpenBox.\n");
- wm ^= vo_wm_FULLSCREEN;
- }
- XFree(args);
- }
-#endif
}
if (wm == 0)
@@ -358,7 +343,6 @@ static void init_atoms(void)
XA_INIT(_WIN_PROTOCOLS);
XA_INIT(_WIN_LAYER);
XA_INIT(_WIN_HINTS);
- XA_INIT(_BLACKBOX_PID);
XA_INIT(WM_PROTOCOLS);
XA_INIT(WM_DELETE_WINDOW);
}