Hello all

I have an issue where I am tasked to modify an existing QWizard application.

Bascially there was a wizard with 6 pages. I wanted to remove the last 3.

There is a main QWizard class where there are pages variables being declared in the constructor, which I didn't remove because many methods depend on those variabls

However, there is also an addPage method being called in the constructor which takes each page variable.
I removed the addPaeg call for the pages I didn't want.

I also went to the 3rd page class, and added an isComplete method, a setComplete method, and removed the nextId method.

Now when I run the wizard, I only see 3 pages. However, the third page does not have a finish button.

I can't figure out why.