Skip to content

Commit 0f9ec60

Browse files
authored
v0.9.1
1 parent 493d3d4 commit 0f9ec60

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

main.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ int main(int argc, char *argv[])
77
QApplication a(argc, argv);
88
MainWindow w;
99
w.show();
10-
1110
return a.exec();
1211
}

mainwindow.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ MainWindow::MainWindow(QWidget *parent)
4242
QTimer trayTimer;
4343
trayTimer.singleShot(1000, this, SLOT(hide()));
4444
}
45+
46+
//Standardtext setzen
47+
ui->label->setText("Ready");
4548
}
4649

4750
MainWindow::~MainWindow()
@@ -275,6 +278,7 @@ void MainWindow::on_pushButton_5_clicked()
275278
void MainWindow::showEvent(QShowEvent* event)
276279
{
277280
QMainWindow::showEvent(event);
281+
// setHotkey(); //Brauchen wir das hier?
278282
}
279283

280284
void MainWindow::closeEvent(QCloseEvent* event)

mainwindow.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</sizepolicy>
1818
</property>
1919
<property name="windowTitle">
20-
<string>SpotiQuit 0.9.0</string>
20+
<string>SpotiQuit 0.9.1</string>
2121
</property>
2222
<property name="windowIcon">
2323
<iconset resource="bilder.qrc">

0 commit comments

Comments
 (0)