mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 13:15:43 +08:00
Fixed MSVC compiler warning because of using class instead of struct in a friend declaration
This commit is contained in:
parent
7c03b1b936
commit
0d406ece7c
@ -23,7 +23,7 @@ class CStatusDialog : public QDialog
|
||||
Q_OBJECT
|
||||
private:
|
||||
StatusDialogPrivate* d; ///< private data (pimpl)
|
||||
friend class StatusDialogPrivate;
|
||||
friend struct StatusDialogPrivate;
|
||||
|
||||
private slots:
|
||||
void on_dockWidgetsComboBox_currentIndexChanged(int index);
|
||||
|
Loading…
Reference in New Issue
Block a user