デバッグ エラー: http://puu.sh/3p8zM.png
私のツールバーのプロパティ: http://puu.sh/3p8Qo.png 私のプログラムは、何度も元に戻すまで正常に動作していましたが、デバッグ時に sigsegv エラーが発生しました :(.
私のコード:
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "login.h"
#include <QAction>
#include <QWidget>
#include <qaction.h>
mainwindow::mainwindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::mainwindow)
{
rPopulate();
ui->setupUi(this);
}
mainwindow::~mainwindow()
{
delete ui;
}
void mainwindow::rPopulate()
{
button = new QPushButton();
button->setText("Message");
//button->setIconSize(QSize(30,28));
ui->toolBar->addWidget(button);
}
void mainwindow::rNew()
{
}
void mainwindow::rView()
{
}
//ui->_menubar->addMenu(tr("&File"));