diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-07-22 13:35:31 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-07-22 13:35:31 (GMT) |
commit | 2116bcaec06230d571e8cdc7c9564fdeba65c03d (patch) | |
tree | 447ba4d67c86d1c00c1b33579a4c8406bc3a0c58 /Mac/Demo | |
parent | 1f00eed8b5f88cd4982f4c9dabdc30d31c1e635e (diff) | |
download | cpython-2116bcaec06230d571e8cdc7c9564fdeba65c03d.zip cpython-2116bcaec06230d571e8cdc7c9564fdeba65c03d.tar.gz cpython-2116bcaec06230d571e8cdc7c9564fdeba65c03d.tar.bz2 |
Remove the MOOV filetype from the StandardGetFile call, so we can also
open MPEG files, etc.
Diffstat (limited to 'Mac/Demo')
-rw-r--r-- | Mac/Demo/quicktime/MovieInWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Demo/quicktime/MovieInWindow.py b/Mac/Demo/quicktime/MovieInWindow.py index ef767a5..af9c7d7 100644 --- a/Mac/Demo/quicktime/MovieInWindow.py +++ b/Mac/Demo/quicktime/MovieInWindow.py @@ -21,7 +21,7 @@ def main(): Qt.EnterMovies() # Get the movie file - fss, ok = macfs.StandardGetFile(QuickTime.MovieFileType) + fss, ok = macfs.StandardGetFile() # Was: QuickTime.MovieFileType if not ok: sys.exit(0) |