Add missing names for parameter variables
This commit is contained in:
@@ -168,14 +168,18 @@ void OrganizeDialog::SetDestinationModel(QAbstractItemModel *model, const bool d
|
||||
|
||||
}
|
||||
|
||||
void OrganizeDialog::showEvent(QShowEvent*) {
|
||||
void OrganizeDialog::showEvent(QShowEvent *e) {
|
||||
|
||||
Q_UNUSED(e)
|
||||
|
||||
LoadGeometry();
|
||||
LoadSettings();
|
||||
|
||||
}
|
||||
|
||||
void OrganizeDialog::closeEvent(QCloseEvent*) {
|
||||
void OrganizeDialog::closeEvent(QCloseEvent *e) {
|
||||
|
||||
Q_UNUSED(e)
|
||||
|
||||
if (!devices_) SaveGeometry();
|
||||
|
||||
|
||||
@@ -74,8 +74,8 @@ class OrganizeDialog : public QDialog {
|
||||
void SetPlaylist(const QString &playlist);
|
||||
|
||||
protected:
|
||||
void showEvent(QShowEvent*) override;
|
||||
void closeEvent(QCloseEvent*) override;
|
||||
void showEvent(QShowEvent *e) override;
|
||||
void closeEvent(QCloseEvent *e) override;
|
||||
|
||||
private:
|
||||
void LoadGeometry();
|
||||
|
||||
Reference in New Issue
Block a user