Hi James,
Great job.
On 05/10/14 20:53, James Lynes wrote:
Try the media control demo then the next control down. I get an X
crash when I do that.
This error is from GStreamer. I use wxMediaCtrl/GStreamer extensively
and they work fine for me in my code. I recall that this bug may have
been something to do with not handling an EOS (end-of-stream) marker
correctly. I can't remember how I fixed it, but if I get a chance I'll
look into it in wxperl_demo.pl and update the git repository.
Regarding your deleting of wxAlien-widgets and wxPerl, if I'm updating
stuff, then the object file name may have changed, so I do this too:
cd ~
find /usr | grep -i wx | grep -v -i python | grep -v -i soffice >
rm_wx.sh # collect all wx files except wxpython and office files
(you might want to check that there are not others that you use here)
sed -i -e 's/\/usr\//rm -rf \/usr\//g'
rm_wx.sh # Add remove recursive to each
line (rm -rf )
sh rm_wx.sh # Remove them !
cd ~