Skip to content

Commit 6336620

Browse files
Fix warning in OpenRGBDialog.h
1 parent ce65818 commit 6336620

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

qt/OpenRGBDialog/OpenRGBDialog.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Ui::OpenRGBDialog : public QMainWindow, private SuspendResumeListener
8080
void ProfileListChanged();
8181

8282
public slots:
83-
void changeEvent(QEvent *event);
83+
void changeEvent(QEvent *event) override;
8484
void SetTrayIcon(bool tray_icon);
8585
void handleAboutToQuit();
8686

@@ -148,7 +148,7 @@ public slots:
148148
void ClearDevicesList();
149149
void UpdateDevicesList();
150150
void UpdateProfileList();
151-
void closeEvent(QCloseEvent *event);
151+
void closeEvent(QCloseEvent *event) override;
152152
bool SelectConfigProfile(const std::string name);
153153

154154
void SetDetectionViewState(bool detection_showing);
@@ -167,8 +167,8 @@ public slots:
167167
void ShowLEDView();
168168
void HideLEDView();
169169

170-
void OnSuspend();
171-
void OnResume();
170+
void OnSuspend() override;
171+
void OnResume() override;
172172

173173
private slots:
174174
void on_Exit();

0 commit comments

Comments
 (0)