Из первого класа являющимся диалогом вызываю другой диалогпосылая данные в переменную, но переменная остаеться пустой Код:void SchetWin:
n_pushButton_2_clicked(){ int sel=listWidget->currentRow(); if (sel > -1) { SchetEdit *schetEdit = new SchetEdit(0); schetEdit->setModal(true); schetEdit->setWindowTitle(tr("Редактирование счета")); schetEdit->show(); schetEdit->comboBox->setVisible(false); schetEdit->label_2->setVisible(false); schetEdit->name = listWidget->item(sel)->text(); }}класс другой Код:#include "schetedit.h"// place your code hereSchetEdit::SchetEdit(QWidget *parent):QDialog(parent){ setupUi(this); shows();}void SchetEdit::shows(){ if (name > "") { QString sql ="SELECT sh_id,sh_name,defaults FROM schet WHERE sh_name='"+name+"'"; query.exec(sql); query.next(); lineEdit->setText(query.value(1).toString()); checkBox->setChecked(query.value(2).toBool()); id = query.value(0).toString(); } }поможите плиз