0

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

1 回答 1

0

I got a sigsegv segmentation fault error because I called rPopulate() before ui->setupUi(this);

GOD THAT IS ANNOYING.

于 2013-06-27T00:01:56.747 回答