Skip to content

Commit

Permalink
Corrected missing include and silenced warning about missing braces.
Browse files Browse the repository at this point in the history
  • Loading branch information
in3otd committed May 9, 2015
1 parent 4382ba8 commit 365bd8d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions qucs/qucs/dialogs/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
AboutDialog::AboutDialog(QWidget *parent)
: QDialog(parent)
{
currAuths = {
currAuths = {{
tr("Guilherme Brondani Torri - GUI programmer, Verilog-A dynamic loader"),
tr("Mike Brinson - testing, modelling and documentation, tutorial contributor"),
tr("Richard Crozier - testing, modelling, Octave."),
Expand All @@ -59,9 +59,9 @@ AboutDialog::AboutDialog(QWidget *parent)
tr("Clemens Novak - GUI programmer"),
tr("Vadim Kuznetsov - filter synthesis (qucs-activefilter), SPICE integration (NGSPICE, Xyce)"),
tr("You-Tang Lee (YodaLee) - GUI programmer, Qt4 porter")
};

prevDevs = {
}};
prevDevs = {{
tr("Michael Margraf - founder of the project, GUI programmer"),
tr("Stefan Jahn - Programmer of simulator"),
tr("Jens Flucke - webpages and translator"),
Expand All @@ -72,9 +72,9 @@ AboutDialog::AboutDialog(QWidget *parent)
tr("Helene Parruitte - programmer of the Verilog-AMS interface"),
tr("Gunther Kraut - equation solver contributions, exponential sources, author of documentation"),
tr("Andrea Zonca - temperature model for rectangular waveguide")
};
}};

trAuths = {
trAuths = {{
tr("German by Stefan Jahn"),
tr("Polish by Dariusz Pienkowski"),
tr("Romanian by Radu Circa"),
Expand All @@ -93,7 +93,7 @@ AboutDialog::AboutDialog(QWidget *parent)
tr("Ukrainian by Dystryk"),
tr("Arabic by Chabane Noureddine"),
tr("Kazakh by Erbol Keshubaev")
};
}};


std::shuffle(currAuths.begin(), currAuths.end(), rng);
Expand Down
1 change: 1 addition & 0 deletions qucs/qucs/dialogs/aboutdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#define ABOUTDIALOG_H

#include <random>
#include <array>

#include <QDialog>
#include <QVBoxLayout>
Expand Down

0 comments on commit 365bd8d

Please sign in to comment.