1 Star 0 Fork 2

gaoyongxiang/RepRaptor

forked from morixinguan/RepRaptor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
errorwindow.cpp 717 Bytes
一键复制 编辑 原始数据 按行查看 历史
NeoTheFox 提交于 2015-03-28 21:34 . Added new error type
#include "errorwindow.h"
#include "ui_errorwindow.h"
using namespace RepRaptor;
ErrorWindow::ErrorWindow(QWidget *parent, QString errorText, int errType):
QDialog(parent),
ui(new Ui::ErrorWindow)
{
ui->setupUi(this);
switch(errType)
{
case SerialPortError:
ui->label->setText(tr("Serial port error:"));
break;
case OpenFileError:
ui->label->setText(tr("File open error:"));
break;
case HardwareFailure:
ui->label->setText(tr("Hardware failure:"));
break;
default:
ui->label->setText(tr("Unknown error type:"));
break;
}
ui->errorlabel->setText(errorText);
}
ErrorWindow::~ErrorWindow()
{
delete ui;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaoyongxiang/RepRaptor.git
git@gitee.com:gaoyongxiang/RepRaptor.git
gaoyongxiang
RepRaptor
RepRaptor
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385