View Single Post
Posts: 198 | Thanked: 76 times | Joined on Mar 2010
#30
do what the error says, remove the "extra qualification 'MainWindow::' " at line 26:

void MainWindow::initMyWordList();

should be

void initMyWordList();

in your header you are declaring the class itself, no need for the namespace here.