Skip to content

Commit

Permalink
rebuild windows binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
jniemann66 committed Apr 25, 2018
1 parent eb6e387 commit 04cc306
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
Binary file modified ferocious-converter.zip
Binary file not shown.
Binary file modified ferocious-converter64.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion ferocious/fancylineedit.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FancyLineEdit : public QLineEdit
Q_OBJECT

public:
FancyLineEdit(QWidget *parent = 0);
FancyLineEdit(QWidget *parent = nullptr);
~FancyLineEdit();

void hideEditButton();
Expand Down
11 changes: 5 additions & 6 deletions ferocious/flashingpushbutton.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
#include <QStyle>
#include <QMouseEvent>

class flashingPushbutton : public QPushButton{

class flashingPushbutton : public QPushButton
{
Q_OBJECT

public:
flashingPushbutton(QWidget* parent=0) : QPushButton(parent), isActive(false), flashState(0)
flashingPushbutton(QWidget* parent = nullptr) : QPushButton(parent), isActive(false), flashState(0)
{
connect(&timer, &QTimer::timeout,this, &flashingPushbutton::flashWhenActive);
timer.start(500);
Expand All @@ -37,11 +37,11 @@ private slots:
{
if (isActive) // flash when active
{
if (flashState == 0){
if (flashState == 0) {
flashState = 1;
setProperty("flashing", true);
}
else if (flashState == 1){
else if (flashState == 1) {
flashState = 0;
setProperty("flashing", false);
}
Expand All @@ -65,7 +65,6 @@ private slots:

};


inline void flashingPushbutton::mousePressEvent(QMouseEvent *mouseEvent)
{

Expand Down
2 changes: 1 addition & 1 deletion ferocious/lpfparametersdlg.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class lpfParametersDlg : public QDialog
Q_OBJECT

public:
explicit lpfParametersDlg(QWidget *parent = 0);
explicit lpfParametersDlg(QWidget *parent = nullptr);
~lpfParametersDlg();

void setValues(double cutoff, double transition);
Expand Down
2 changes: 1 addition & 1 deletion ferocious/outputfileoptions_dialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class OutputFileOptions_Dialog : public QDialog
Q_OBJECT

public:
explicit OutputFileOptions_Dialog(FilenameGenerator& OFN, QWidget *parent = 0);
explicit OutputFileOptions_Dialog(FilenameGenerator& OFN, QWidget *parent = nullptr);
~OutputFileOptions_Dialog();

private slots:
Expand Down

0 comments on commit 04cc306

Please sign in to comment.