Errors in code example of Nokia Qt SDK version 1.0
There are 2 errors in code example of Nokia Qt SDK version 1.0.
The 1st is in file C:\NokiaQtSDK\Examples\4.6\statemachine\eventtransitions\main.cpp
. . .
111 #if defined(Q_OS_SYMBIAN);
112 window.showMaximized();
113 #else
. . .
There is a ";" at the end of line 111, which can't be there.
The 2nd is in file C:\NokiaQtSDK\Examples\4.6\richtext\orderform\main.cpp
. . .
53 windows.show();
. . .
and it should be
window.show();
And these 2 errors are not correctted in version 1.1.

