]> git.sesse.net Git - vlc/blob - extras/contrib/src/Patches/wxwidgets_uri.patch
Video outputs should not change the vout's render format.
[vlc] / extras / contrib / src / Patches / wxwidgets_uri.patch
1 --- src/common/uri.cpp.orig     2005-08-13 02:24:13.000000000 +0200
2 +++ src/common/uri.cpp  2006-05-14 10:49:14.000000000 +0200
3 @@ -886,8 +886,8 @@
4                      op += 3;
5              }
6  
7 -            m_path = base.m_path.substr(0, bp - base.m_path.c_str()) +
8 -                    m_path.substr((op - m_path.c_str()), m_path.Length());
9 +            m_path = (wxString)base.m_path.substr(0, bp - base.m_path.c_str()) +
10 +                    (wxString)m_path.substr((op - m_path.c_str()), m_path.Length());
11          }
12      }
13