diff options
Diffstat (limited to 'src/kernel/qasyncimageio.cpp')
-rw-r--r-- | src/kernel/qasyncimageio.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/kernel/qasyncimageio.cpp b/src/kernel/qasyncimageio.cpp index c8e8d6ef5..41164a4c6 100644 --- a/src/kernel/qasyncimageio.cpp +++ b/src/kernel/qasyncimageio.cpp @@ -38,12 +38,12 @@ ** **********************************************************************/ -#include "qasyncimageio.h" +#include "ntqasyncimageio.h" #ifndef QT_NO_ASYNC_IMAGE_IO -#include "qptrlist.h" -#include "qgif.h" +#include "ntqptrlist.h" +#include "ntqgif.h" #include <stdlib.h> extern void qt_init_image_handlers(); @@ -52,7 +52,7 @@ extern void qt_init_image_plugins(); #define Q_TRANSPARENT 0x00ffffff /*! - \class TQImageConsumer qasyncimageio.h + \class TQImageConsumer ntqasyncimageio.h \brief The TQImageConsumer class is an abstraction used by TQImageDecoder. \ingroup images @@ -154,7 +154,7 @@ extern void qt_init_image_plugins(); /*! - \class TQImageDecoder qasyncimageio.h + \class TQImageDecoder ntqasyncimageio.h \brief The TQImageDecoder class is an incremental image decoder for all supported image formats. \ingroup images @@ -178,7 +178,7 @@ extern void qt_init_image_plugins(); \legalese TQt supports GIF reading if it is configured that way during - installation (see qgif.h). If it is, we are required to state that + installation (see ntqgif.h). If it is, we are required to state that "The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated." @@ -199,7 +199,7 @@ static const int max_header = 32; -// See qgif.h for important information regarding this option +// See ntqgif.h for important information regarding this option #if defined(QT_BUILTIN_GIF_READER) && QT_BUILTIN_GIF_READER == 1 class TQGIFFormat : public TQImageFormat { public: @@ -299,7 +299,7 @@ public: { if ( !factories ) { factories = new TQPtrList<TQImageFormatType>; -// See qgif.h for important information regarding this option +// See ntqgif.h for important information regarding this option #if defined(QT_BUILTIN_GIF_READER) && QT_BUILTIN_GIF_READER == 1 gif_decoder_factory = new TQGIFFormatType; #endif @@ -310,7 +310,7 @@ public: static TQPtrList<TQImageFormatType> * factories; -// See qgif.h for important information regarding this option +// See ntqgif.h for important information regarding this option #if defined(QT_BUILTIN_GIF_READER) && QT_BUILTIN_GIF_READER == 1 static TQGIFFormatType * gif_decoder_factory; #endif @@ -320,7 +320,7 @@ public: }; TQPtrList<TQImageFormatType> * TQImageDecoderPrivate::factories = 0; -// See qgif.h for important information regarding this option +// See ntqgif.h for important information regarding this option #if defined(QT_BUILTIN_GIF_READER) && QT_BUILTIN_GIF_READER == 1 TQGIFFormatType * TQImageDecoderPrivate::gif_decoder_factory = 0; #endif @@ -330,7 +330,7 @@ void TQImageDecoderPrivate::cleanup() { delete factories; factories = 0; -// See qgif.h for important information regarding this option +// See ntqgif.h for important information regarding this option #if defined(QT_BUILTIN_GIF_READER) && QT_BUILTIN_GIF_READER == 1 delete gif_decoder_factory; gif_decoder_factory = 0; @@ -531,7 +531,7 @@ void TQImageDecoder::unregisterDecoderFactory(TQImageFormatType* f) } /*! - \class TQImageFormat qasyncimageio.h + \class TQImageFormat ntqasyncimageio.h \brief The TQImageFormat class is an incremental image decoder for a specific image format. \ingroup images @@ -583,7 +583,7 @@ TQImageFormat::~TQImageFormat() */ /*! - \class TQImageFormatType qasyncimageio.h + \class TQImageFormatType ntqasyncimageio.h \brief The TQImageFormatType class is a factory that makes TQImageFormat objects. \ingroup images @@ -659,11 +659,11 @@ bool qt_builtin_gif_reader() #endif } -// See qgif.h for important information regarding this option +// See ntqgif.h for important information regarding this option #if defined(QT_BUILTIN_GIF_READER) && QT_BUILTIN_GIF_READER == 1 /* -- NOTDOC - \class TQGIFFormat qasyncimageio.h + \class TQGIFFormat ntqasyncimageio.h \brief Incremental image decoder for GIF image format. \ingroup images @@ -702,7 +702,7 @@ TQGIFFormat::~TQGIFFormat() /* -- NOTDOC - \class TQGIFFormatType qasyncimageio.h + \class TQGIFFormatType ntqasyncimageio.h \brief Incremental image decoder for GIF image format. \ingroup images |