调试错误: 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"));