1 Star 0 Fork 49

zhaoqil/linux_spy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dialog_comment.cpp 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "dialog_comment.h"
#include "ui_dialog_comment.h"
#include <QMessageBox>
Dialog_comment::Dialog_comment(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog_comment)
{
ui->setupUi(this);
}
Dialog_comment::~Dialog_comment()
{
delete ui;
}
void Dialog_comment::on_pushButton_ok_clicked()
{
QString text = ui->lineEdit->text();
if(text.isEmpty()){
close();
}
comment = text;
ui->lineEdit->setText("");
close();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xxrl2018/linux_spy.git
[email protected]:xxrl2018/linux_spy.git
xxrl2018
linux_spy
linux_spy
linux_spy_hp

搜索帮助