updated gitignore

This commit is contained in:
mrbesen 2021-12-13 11:35:36 +01:00
parent 92b7defaf5
commit 56505a2e57
Signed by untrusted user: MrBesen
GPG Key ID: 596B2350DCD67504
3 changed files with 6 additions and 2 deletions

4
.gitignore vendored
View File

@ -71,3 +71,7 @@ Thumbs.db
*.dll
*.exe
generated/
.vscode/settings.json
testqt

0
pulseaudiosetup.sh Normal file → Executable file
View File

View File

@ -12,10 +12,10 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWi
sound.addDefaultDevice();
QPushButton* btn = ui->pushButton;
QObject::connect(btn, SIGNAL( clicked() ), this, SLOT( buttonPressed() ));
QObject::connect(btn, SIGNAL( clicked() ), this, SLOT( buttonPressed0() ));
QPushButton* btn2 = ui->pushButton2;
QObject::connect(btn2, SIGNAL( clicked() ), this, SLOT( buttonPressed() ));
QObject::connect(btn2, SIGNAL( clicked() ), this, SLOT( buttonPressed1() ));
sc = new QShortcut(QKeySequence("Shift+1"), this, 0, 0, Qt::ApplicationShortcut);
QObject::connect(sc, SIGNAL( activated() ), this, SLOT( shortcut() ));