Heim > Fragen und Antworten > Hauptteil
#include <QObject>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "addDialog.h"
#include <QMessageBox>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
setFixedSize(this->width(), this->height());
addDialog addD();
editDialog editD();
QObject::connect(&editD, &editDialog::sendData,
this, &MainWindow::get_data_from_edit);
QObject::connect(&addD, &addDialog::sendData,
this, &MainWindow::get_data_from_add);
}
Beide Verbindungen haben Fehler gemeldet
error: no matching function for call to 'MainWindow::connect(editDialog (*)(), void (editDialog::*)(QString), MainWindow*, void (MainWindow::*)(QString))'
this, &MainWindow::get_data_from_edit);
^
In file included from D:\QT.9\mingw53_32\include\QtCore/QObject:1:0,
from mainwindow.cpp:3:
error: no type named 'type' in 'struct std::enable_if<false, QMetaObject::Connection>'
Alle verwendeten Klassen erben QObject und enthalten Q_OBJECT
Bei Verwendung der alten Syntax wird immer noch ein Fehler gemeldet
某草草2017-06-19 09:09:26
楼主,你把MainWindow::get_data_from_edit和MainWindow::get_data_from_add的方法声明贴出来。