Errata


Print Print Icon

Submit your own errata for this product.


The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.


Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question



Version Location Description Submitted By Corrected
Printed Page xvi
one third of the way down

Website for book is incorrect it lists:
http://www.oreilly.com/prowqt/

when it should be:
http://www.oreilly.com/catalog/9780596000646/

Anonymous 
Printed Page 167
IN PRINT: 3rd paragraph

http://www.iarchitect.com/msname.htm
http://www.iarchitect.com/mfame.htm

SHOULD BE:
Remove from text.

Anonymous 
Printed Page 228
code example 10-1:

The class declaration for the
ISBNValidator class HAS BEEN CHANGED to the following:

class ISBNValidator : public QValidator
{
public:
ISBNValidator() : QValidator( 0 ) {};
virtual State validate( QString&, int& ) const;
virtual void fixup( QString& ) const;
};

Anonymous  Oct 2003
Printed Page 228
code example 10-1:

Three instances of text[pos]

HAVE BEEN CHANGED to text[pos-1]

and pos >= text.length()

HAS BEEN CHANGED to pos > text.length()

Anonymous  Oct 2003
Printed Page 427
2nd paragraph, 6th line

When the Anchovies checkbox is toggled, the Extra Cheese checkbox should be toogled
(see page 419). Change "setEnabled(bool)" to "setChecked(bool)" for this to work
properly

Anonymous