Skip to content
Extraits de code Groupes Projets

Theme system

Fusionnées Kubat a demandé de fusionner theme vers log-macros
2 fichiers
+ 3
0
Comparer les modifications
  • Côte à côte
  • En ligne
Fichiers
2
+ 2
0
@@ -55,6 +55,7 @@ AboutWindow::LicenceLabel::LicenceLabel(QWidget *parent, const QString &url,
const Qt::TextFormat format)
: QTextEdit(parent)
{
VIVY_LOG_CTOR() << "Creating label for licence '" << url << '\'';
QFile content(url);
if (!content.open(QIODevice::ReadOnly | QIODevice::Text))
throw std::runtime_error("Failed to open file that should be accessible");
@@ -83,6 +84,7 @@ AboutWindow::AboutWindow(QWidget *parent) noexcept
: QMainWindow(parent, Qt::Dialog)
, panels(new QTabWidget)
{
VIVY_LOG_CTOR() << "Creating the 'Vivy - About' window";
setWindowIcon(QIcon(VIVY_ICON_APP));
setWindowTitle("Vivy - About");
Chargement en cours