Errata

Programming with Qt

Errata for Programming with Qt

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 "Date 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 Note Update

Version Location Description Submitted By Date submitted Date 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 01, 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 01, 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