1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-04 23:40:47 +00:00

Get rid of (besides useless assignments) unused XSizeHints variable

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27922 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-11-15 18:14:03 +00:00
parent ebff32237b
commit f2bceedc49

View File

@ -166,7 +166,6 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
uint32_t d_height, uint32_t flags, char *title, uint32_t d_height, uint32_t flags, char *title,
uint32_t format) uint32_t format)
{ {
XSizeHints hint;
XVisualInfo vinfo; XVisualInfo vinfo;
XGCValues xgcv; XGCValues xgcv;
XSetWindowAttributes xswa; XSetWindowAttributes xswa;
@ -230,10 +229,6 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
else else
#endif #endif
{ {
hint.x = vo_dx;
hint.y = vo_dy;
hint.width = d_width;
hint.height = d_height;
#ifdef CONFIG_XF86VM #ifdef CONFIG_XF86VM
if (vm) if (vm)
{ {
@ -248,16 +243,9 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
} }
vo_vm_switch(vm_width, vm_height, &modeline_width, vo_vm_switch(vm_width, vm_height, &modeline_width,
&modeline_height); &modeline_height);
hint.x = (vo_screenwidth - modeline_width) / 2;
hint.y = (vo_screenheight - modeline_height) / 2;
hint.width = modeline_width;
hint.height = modeline_height;
aspect_save_screenres(modeline_width, modeline_height); aspect_save_screenres(modeline_width, modeline_height);
} else } else
#endif #endif
hint.flags = PPosition | PSize /* | PBaseSize */ ;
hint.base_width = hint.width;
hint.base_height = hint.height;
XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay),
&attribs); &attribs);
depth = attribs.depth; depth = attribs.depth;