diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-03-26 14:45:07 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-03-26 14:45:07 (GMT) |
commit | 832f903325883a4b4c4a30aeb621e502abf72935 (patch) | |
tree | 11a6c91eabf3cbafe35dbd5e1a29e6dc7191f171 /generic/tkWindow.c | |
parent | 246e7b68e9ece313df64749d30522c60f7a4b19d (diff) | |
download | tk-832f903325883a4b4c4a30aeb621e502abf72935.zip tk-832f903325883a4b4c4a30aeb621e502abf72935.tar.gz tk-832f903325883a4b4c4a30aeb621e502abf72935.tar.bz2 |
Whoops. Forgot to set the photo image type registration correctly. D'oh!
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index 769e4fd..3172d81 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkWindow.c,v 1.63 2004/03/17 18:15:44 das Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.64 2004/03/26 14:45:07 dkf Exp $ */ #include "tkPort.h" @@ -353,7 +353,7 @@ CreateTopLevelWindow(interp, parent, name, screenName, flags) */ Tk_CreatePhotoImageFormat(&tkImgFmtGIF); - Tk_CreateOldPhotoImageFormat(&tkImgFmtPPM); + Tk_CreatePhotoImageFormat(&tkImgFmtPPM); /* * Create exit handler to delete all windows when the application |