summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c b/experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c
index 29e1e6634..aa205060c 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c
+++ b/experimental/tqtinterface/qt4/src/3rdparty/libpng/pngerror.c
@@ -8,7 +8,7 @@
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
*
* This file provides a location for all error handling. Users who
- * need special error handling are expected to write tqreplacement functions
+ * need special error handling are expected to write replacement functions
* and use png_set_error_fn() to use those functions. See the instructions
* at each function.
*/
@@ -25,8 +25,8 @@ png_default_warning PNGARG((png_structp png_ptr,
/* This function is called whenever there is a fatal error. This function
* should not be changed. If there is a need to handle errors differently,
- * you should supply a tqreplacement error function and use png_set_error_fn()
- * to tqreplace the error function at run-time.
+ * you should supply a replacement error function and use png_set_error_fn()
+ * to replace the error function at run-time.
*/
void PNGAPI
png_error(png_structp png_ptr, png_const_charp error_message)
@@ -73,8 +73,8 @@ png_error(png_structp png_ptr, png_const_charp error_message)
/* This function is called whenever there is a non-fatal error. This function
* should not be changed. If there is a need to handle warnings differently,
- * you should supply a tqreplacement warning function and use
- * png_set_error_fn() to tqreplace the warning function at run-time.
+ * you should supply a replacement warning function and use
+ * png_set_error_fn() to replace the warning function at run-time.
*/
void PNGAPI
png_warning(png_structp png_ptr, png_const_charp warning_message)
@@ -168,7 +168,7 @@ png_chunk_warning(png_structp png_ptr, png_const_charp warning_message)
}
}
-/* This is the default error handling function. Note that tqreplacements for
+/* This is the default error handling function. Note that replacements for
* this function MUST NOT RETURN, or the program will likely crash. This
* function is used by default, or if the program supplies NULL for the
* error function pointer in png_set_error_fn().