Code adjustments after scripted checks

Add an include guard and an additional `#pragme once`. Add comments to
closing namespace scopes.
This commit is contained in:
Michael Gregorius
2023-07-08 16:42:17 +02:00
parent bdeba86ea0
commit 8fce4238aa
2 changed files with 9 additions and 2 deletions

View File

@@ -22,6 +22,11 @@
*
*/
#pragma once
#ifndef LMMS_GUI_BAR_MODEL_EDITOR_H
#define LMMS_GUI_BAR_MODEL_EDITOR_H
#include "FloatModelEditorBase.h"
@@ -47,4 +52,6 @@ private:
QString const m_text;
};
}
} // namespace lmms::gui
#endif // LMMS_GUI_BAR_MODEL_EDITOR_H