我從我的設計類調用這個後來將它們添加到佈局,但我總是與功能ladeBild(QLabel l, QString s)
沒有匹配函數來調用到
void Levels::erzeugen(Levels *)
{
....
ladeBild(l01,"l01.png");
ladeBild(l02,"l02.png");
ladeBild(l03,"l03.png");
ladeBild(l04,"l04.png");
ladeBild(l05,"l05.png");
ladeBild(l06,"l06.png");
ladeBild(l07,"l07.png");
ladeBild(l08,"l08.png");
ladeBild(l09,"l09.png");
ladeBild(l10,"l10.png");
ladeBild(l11,"l11.png");
ladeBild(l12,"l12.png");
...
}
void Levels::ladeBild(QLabel l,QString s)
{
l = new QLabel();
l.setBackgroundRole(QPalette::Dark);
l.setAutoFillBackground(true);
image = new QImage(s);//Muss im debug-Ordner sein!!!
l.setPixmap(QPixmap::fromImage(*image));
l.setMaximumHeight(image->height());
l.setMaximumWidth(image->width());
}
錯誤消息,並且我收到以下錯誤消息(每次調用ladeBild
)
In member function 'void Levels::erzeugen(Levels*)': Fehler:no matching function for call to 'Levels::ladeBild(QLabel*&, const char [8])' candidates are: void Levels::ladeBild(QLabel, QString) Fehler:no match for 'operator=' in 'l = (QFlags<Qt::WindowType>(0u), (operator new(20u), (<statement>, ((QLabel*)<anonymous>))))' candidates are: QLabel& QLabel::operator=(const QLabel&)`
不能修復這個問題...
'l = new QLabel();' - 您試圖在這裏爲'QLabel'指定'QLabel *'。 – chris
請儘可能將代碼複製/粘貼到您的問題中 - 對於您發佈的內容,您應該也會在chris評論的線上發現錯誤。 –