I can only see a few minor misspellings there:
finddialog.cpp:
void FindDialog
::enableFindButton(const QString &text
) {
findButton->setEnabled(!text.isEmpty());
}_ // <-- remove the additional underscore
void FindDialog::enableFindButton(const QString &text)
{
findButton->setEnabled(!text.isEmpty());
}_ // <-- remove the additional underscore
To copy to clipboard, switch view to plain text mode
main.cpp:
#include "finddiaglog.h" // <-- typo
...
#include "finddiaglog.h" // <-- typo
...
QApplication app(argc, argv); // <-- semicolon missing
To copy to clipboard, switch view to plain text mode
PS. Please use [ code ] -tags to make code snippets more readable..
Bookmarks