2
0
forked from Ivasoft/DSView

rename project for upgrade

This commit is contained in:
DreamSourceLab
2015-04-17 00:21:14 +08:00
parent eea8d95eb1
commit 153d1f9ebd
174 changed files with 5986 additions and 1530 deletions

View File

@@ -1,6 +1,6 @@
/*
* This file is part of the DSLogic-gui project.
* DSLogic-gui is based on PulseView.
* This file is part of the DSView project.
* DSView is based on PulseView.
*
* Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
* Copyright (C) 2013 DreamSourceLab <dreamsourcelab@dreamsourcelab.com>
@@ -29,7 +29,7 @@
/* __STDC_FORMAT_MACROS is required for PRIu64 and friends (in C++). */
#define __STDC_FORMAT_MACROS
#include <glib.h>
#include <libsigrok4DSLogic/libsigrok.h>
#include <libsigrok4DSL/libsigrok.h>
namespace pv {
@@ -47,6 +47,8 @@ About::About(QWidget *parent) :
.arg(QApplication::applicationVersion())
.arg(QApplication::organizationDomain()));
ui->versionInfo->setOpenExternalLinks(true);
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
}
About::~About()
@@ -54,5 +56,11 @@ About::~About()
delete ui;
}
void About::accept()
{
using namespace Qt;
QDialog::accept();
}
} // namespace dialogs
} // namespace pv