first commit in a series to change property functions into D style

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1454 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
trass3r 2010-03-13 01:56:39 +00:00
parent 809b09292f
commit 1c72b919e7
5 changed files with 443 additions and 460 deletions

View file

@ -85,7 +85,7 @@ abstract class SoundStream : SoundSource!("sfSoundStream")
m_flag = true;
sfSoundStream_Play(m_ptr);
if (getStatus() != SoundStatus.Paused)
if (status != SoundStatus.Paused)
{
m_t = new Thread(&threadPoll);
m_t.start();