mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Qt: Add msvc support
This commit is contained in:
parent
16c6a19190
commit
ae3a5ce9e3
12 changed files with 363 additions and 37 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <QDialog>
|
||||
|
||||
// Predefinitions
|
||||
|
@ -16,12 +17,12 @@ class DAboutDialog : public QDialog
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DAboutDialog(QWidget *p = 0);
|
||||
explicit DAboutDialog(QWidget* p = nullptr);
|
||||
~DAboutDialog();
|
||||
|
||||
private slots:
|
||||
void on_label_linkActivated(const QString &link);
|
||||
void on_label_linkActivated(const QString& link);
|
||||
|
||||
private:
|
||||
Ui::DAboutDialog *ui;
|
||||
std::unique_ptr<Ui::DAboutDialog> ui;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue