forked from qt-creator/qt-creator
Doc - Working on part 5
RevBy: TrustMe
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#include "finddialog.h"
|
||||
#include "ui_finddialog.h"
|
||||
|
||||
FindDialog::FindDialog(QWidget *parent) :
|
||||
QDialog(parent),
|
||||
m_ui(new Ui::FindDialog)
|
||||
{
|
||||
m_ui->setupUi(this);
|
||||
}
|
||||
|
||||
FindDialog::~FindDialog()
|
||||
{
|
||||
delete m_ui;
|
||||
}
|
||||
|
||||
void FindDialog::findClicked()
|
||||
{
|
||||
}
|
||||
|
||||
QString FindDialog::getFindText()
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user