fixed CInterval.setT ffi problem

This commit is contained in:
Darren Ranalli 2005-02-23 22:53:46 +00:00
parent f8000948e5
commit 2950347587
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
# Overridden from the C++ function to call privPostEvent
# afterward. We do this by renaming the C++ function in
# FFIRename.
self.__cSetT(t)
self._priv__cSetT(t)
self.privPostEvent()
def play(self, t0 = 0.0, duration = None, scale = 1.0):

View File

@ -44,7 +44,7 @@ methodRenameDictionary = {
'operator<<=' : '__ilshift__',
'operator>>=' : '__irshift__',
'print' : 'Cprint',
'CInterval.setT' : '__cSetT',
'CInterval.setT' : '_priv__cSetT',
}
classRenameDictionary = {