(trivial) regularize coding style
This commit is contained in:
parent
15b87b2ec4
commit
1df182ff88
1 changed files with 10 additions and 6 deletions
|
@ -34,8 +34,8 @@ QRCodeDialog::~QRCodeDialog()
|
|||
delete ui;
|
||||
}
|
||||
|
||||
void QRCodeDialog::genCode() {
|
||||
|
||||
void QRCodeDialog::genCode()
|
||||
{
|
||||
QString uri = getURI();
|
||||
//qDebug() << "Encoding:" << uri.toUtf8().constData();
|
||||
QRcode *code = QRcode_encodeString(uri.toUtf8().constData(), 0, QR_ECLEVEL_L, QR_MODE_8, 1);
|
||||
|
@ -52,7 +52,8 @@ void QRCodeDialog::genCode() {
|
|||
ui->lblQRCode->setPixmap(QPixmap::fromImage(myImage).scaled(300, 300));
|
||||
}
|
||||
|
||||
QString QRCodeDialog::getURI() {
|
||||
QString QRCodeDialog::getURI()
|
||||
{
|
||||
QString ret = QString("bitcoin:%1").arg(address);
|
||||
|
||||
int paramCount = 0;
|
||||
|
@ -80,15 +81,18 @@ QString QRCodeDialog::getURI() {
|
|||
return ret;
|
||||
}
|
||||
|
||||
void QRCodeDialog::on_lnReqAmount_textChanged(const QString &) {
|
||||
void QRCodeDialog::on_lnReqAmount_textChanged(const QString &)
|
||||
{
|
||||
genCode();
|
||||
}
|
||||
|
||||
void QRCodeDialog::on_lnLabel_textChanged(const QString &) {
|
||||
void QRCodeDialog::on_lnLabel_textChanged(const QString &)
|
||||
{
|
||||
genCode();
|
||||
}
|
||||
|
||||
void QRCodeDialog::on_lnMessage_textChanged(const QString &) {
|
||||
void QRCodeDialog::on_lnMessage_textChanged(const QString &)
|
||||
{
|
||||
genCode();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue