Add namespace prefix to include guards

This commit is contained in:
Dalton Messmer
2023-01-02 19:51:32 -05:00
parent 79def0c3b5
commit fe6df8dbaf
280 changed files with 645 additions and 761 deletions

View File

@@ -21,12 +21,9 @@
* Boston, MA 02110-1301 USA.
*
*/
#ifndef SAMPLE_TRACK_WINDOW_H
#define SAMPLE_TRACK_WINDOW_H
#ifndef LMMS_GUI_SAMPLE_TRACK_WINDOW_H
#define LMMS_GUI_SAMPLE_TRACK_WINDOW_H
#include <QWidget>
@@ -43,7 +40,7 @@ class EffectRackView;
class Knob;
class MixerLineLcdSpinBox;
class SampleTrackView;
class SampleTrackWindow : public QWidget, public ModelView, public SerializingObjectHook
{