aboutsummaryrefslogtreecommitdiff
path: root/src/about.h
diff options
context:
space:
mode:
authorLibravatar Mubashshir <ahm@jadupc.com>2023-09-19 02:01:41 +0600
committerLibravatar Mubashshir <ahm@jadupc.com>2023-09-19 02:01:41 +0600
commit36d10b4b6359b5cf3ff0e37f2330dfaf91cbf530 (patch)
treecad68505e3dcff4e8d37c5a6a052240d8a935efb /src/about.h
parent35d85d38d02d97e1c63729bb3301f46bb6f96728 (diff)
parent906ca7eb436dc9944d43f5b7f6ae7b44afc2a3e7 (diff)
downloadwhatsie-36d10b4b6359b5cf3ff0e37f2330dfaf91cbf530.tar.gz
whatsie-36d10b4b6359b5cf3ff0e37f2330dfaf91cbf530.zip
Update upstream source from tag 'upstream/4.14.1'
Update to upstream version '4.14.1' with Debian dir 267b96a979689ac47077c72b576cf79da29f8ff2
Diffstat (limited to 'src/about.h')
-rw-r--r--src/about.h29
1 files changed, 12 insertions, 17 deletions
diff --git a/src/about.h b/src/about.h
index cd9e978..fc946e6 100644
--- a/src/about.h
+++ b/src/about.h
@@ -1,36 +1,31 @@
#ifndef ABOUT_H
#define ABOUT_H
-#include <QWidget>
#include <QKeyEvent>
+#include <QWidget>
namespace Ui {
class About;
}
-class About : public QWidget
-{
- Q_OBJECT
+class About : public QWidget {
+ Q_OBJECT
public:
- explicit About(QWidget *parent = nullptr);
- ~About();
+ explicit About(QWidget *parent = nullptr);
+ ~About();
-protected slots:
- void keyPressEvent(QKeyEvent *e);
+protected:
+ void keyPressEvent(QKeyEvent *e) override;
private slots:
- void on_debugInfoButton_clicked();
-
- void on_donate_2_clicked();
+ void on_debugInfoButton_clicked();
private:
- Ui::About *ui;
+ Ui::About *ui;
- QString appName, appDescription,
- appSourceCodeLink, appAuthorLink,
- appAuthorName, appAuthorEmail,
- donateLink,moreAppsLink, appRateLink;
- bool isOpenSource;
+ QString appName, appDescription, appSourceCodeLink, appAuthorLink,
+ appAuthorName, appAuthorEmail, donateLink, moreAppsLink, appRateLink;
+ bool isOpenSource;
};
#endif // ABOUT_H