1. 10 Jun, 2010 12 commits
    • Jean-Baptiste Kempf's avatar
      Qt: Remove redundant code · 5422c4fa
      Jean-Baptiste Kempf authored
      5422c4fa
    • Erwan Tulou's avatar
      Win32(core): do not duplicate handle · afe774e0
      Erwan Tulou authored
      Unlike _endthread and ExitThread, _endthreadex doesn't close the handle.
      It is therefore up to the caller to close it. Hence no need for an extra
      handle duplication (that mostly amounted to a memory leak when the normal
       path was used, i.e normal return from thread with implicit _endthreadex)
      afe774e0
    • Erwan Tulou's avatar
      Win32(core): _endthreadex(0) instead of _endthread() · 99f71e5a
      Erwan Tulou authored
      According to msdn doc, _endthreadex(0) is to be used when thread is
       launched with _beginthreadex().
      
      Note that when returning from the normal path, an implicit _endthreadex is
      issued anyway.  It is important to be consistent whatever the path, since
      those final functions (_endthread, ExitThread, _endthreadex) don't have
      the same deallocation policy.
      99f71e5a
    • Christophe Mutricy's avatar
      Fix description · 5a6d4231
      Christophe Mutricy authored
      5a6d4231
    • Christophe Mutricy's avatar
      Honor LUAC passed by the user. · 8fb9110b
      Christophe Mutricy authored
      As we use AC_PATH_PROG, if you want to force LUAC by specifying it on your command line you need to give a full path+exec_name. Which is a bit un friendly. So work-around this behaviour.
      8fb9110b
    • Erwan Tulou's avatar
      msw: remove unneeded code and useless "shaking" of window · 0a231ffa
      Erwan Tulou authored
      For lack of a faster detection (based on win32 api messages),
      resize/move of the parent window are detected in the Manage function
      on a regular basis and acted upon if need be.
      
      Move is an issue only for directx (surface doesn't automatically follow
      the associated window). Though coordinates doesn't change, an UpdateRects
      is still required to update the various rectangles used by directx.
      
      As it was coded, everything was already taken care of.
      The artificial "shaking" of the window was quite useless.
      0a231ffa
    • Rémi Duraffort's avatar
      Bump the ABI. · ff58f274
      Rémi Duraffort authored
      ff58f274
    • Ilkka Ollakka's avatar
      qt4: make dnd to accepts network-urls · eeb1cf53
      Ilkka Ollakka authored
      drop toNativeSeparators-usage (shoudln't break win32, but then again this could
      be my application for the 'stupid win32 breakage of the year' ;). This allows
      for example drag youtube links to vlc playlist directly.
      
      Parse also dropper text if it has valid url if we don't have urls on drop ( from browser addressbar for example you get text ).
      eeb1cf53
    • Rémi Duraffort's avatar
      plugins: allow to set more than one shortcut in on shot. · ed246608
      Rémi Duraffort authored
      This is faster as we can now alloc the right size for the shortcuts array.
      ed246608
    • Christophe Mutricy's avatar
      Allow users to select Sinhala · 5f6a8d74
      Christophe Mutricy authored
      5f6a8d74
    • Erwan Tulou's avatar
      msw: let zooming to exceed the display size · c8b51e05
      Erwan Tulou authored
      There seems to be no more reason to force clipping to the display size
      when zooming.  (tested successfully on WinXP with directx, gdi, opengl)
      c8b51e05
    • Erwan Tulou's avatar
      core: fix a wrong division · 30efd37a
      Erwan Tulou authored
      Dividing an unsigned int by 2 is different from dividing an int by 2
      
      This division was the cause for vlc(Win32) displaying a black screen
      when zooming exceeded the display size (alt-'o')
      
      Weirdly, there was no problem for Linux !!?? and also no regression :)
      30efd37a
  2. 09 Jun, 2010 3 commits
  3. 08 Jun, 2010 17 commits
  4. 07 Jun, 2010 8 commits