feat(GODT-3121): fix issues reported by the resharper C++ engine.

This commit is contained in:
Xavier Michelon
2023-11-30 17:51:19 +01:00
parent ebeca394c7
commit 39b31abef8
24 changed files with 119 additions and 129 deletions

View File

@ -45,7 +45,6 @@ public: // member functions.
EventsTab& operator=(EventsTab&&) = delete; ///< Disabled move assignment operator.
qint32 eventDelayMs() const; ///< Get the delay for sending automatically generated events.
void updateGUIState(); ///< Update the GUI state.
BugReportResult nextBugReportResult() const; ///< Get the value of the 'Next bug report result' combo box.
bool isPortFree() const; ///< Get the value for the "Is Port Free" check box.
bool nextCacheChangeWillSucceed() const; ///< Get the value for the 'Next Cache Change will succeed' edit.
@ -53,7 +52,7 @@ public: // member functions.
void resetUI() const; ///< Resets the UI.
private: // data members
Ui::EventsTab ui_; ///< The UI for the widget.
Ui::EventsTab ui_ {}; ///< The UI for the widget.
};