-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtorah.cpp
44 lines (36 loc) · 904 Bytes
/
torah.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "torah.h"
#include "ui_torah.h"
Torah::Torah(QWidget *parent) :
QDialog(parent),
ui(new Ui::Torah)
{
ui->setupUi(this);
}
Torah::~Torah()
{
delete ui;
}
void Torah::on_lineEdit_textChanged(const QString &arg1)
{
ui->gem1->display(Program::calculateGematria(arg1));
}
void Torah::on_lineEdit_2_textChanged(const QString &arg1)
{
ui->gem2->display(Program::calculateGematria(arg1));
}
void Torah::on_lineEdit_3_textChanged(const QString &arg1)
{
ui->gem3->display(Program::calculateGematria(arg1));
}
void Torah::on_lineEdit_4_textChanged(const QString &arg1)
{
ui->gem4->display(Program::calculateGematria(arg1));
}
void Torah::on_lineEdit_5_textChanged(const QString &arg1)
{
ui->gem5->display(Program::calculateGematria(arg1));
}
void Torah::on_lineEdit_6_textChanged(const QString &arg1)
{
ui->gem6->display(Program::calculateGematria(arg1));
}