mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +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 <QMainWindow>
|
||||
|
||||
// Predefinitions
|
||||
|
@ -16,7 +17,7 @@ class DMainWindow : public QMainWindow
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit DMainWindow(QWidget *p = 0);
|
||||
explicit DMainWindow(QWidget* p = nullptr);
|
||||
~DMainWindow();
|
||||
|
||||
private slots:
|
||||
|
@ -28,5 +29,5 @@ private slots:
|
|||
void on_actAbout_triggered();
|
||||
|
||||
private:
|
||||
Ui::DMainWindow *ui;
|
||||
std::unique_ptr<Ui::DMainWindow> ui;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue