Move FileRevealer into the lmms::gui namespace (#7923)

This commit is contained in:
Andrew Wiltshire
2025-06-01 14:46:00 +01:00
committed by GitHub
parent 2d2c26d501
commit fd1a4c1b6e
2 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@
#include <QFileInfo>
namespace lmms {
namespace lmms::gui {
/**
* @class FileRevealer
@@ -73,5 +73,5 @@ protected:
static bool supportsArg(const QString& command, const QString& arg);
};
} // namespace lmms
} // namespace lmms::gui
#endif // LMMS_FILE_REVEALER_H

View File

@@ -35,7 +35,7 @@
#include "lmmsconfig.h"
namespace lmms {
namespace lmms::gui {
bool FileRevealer::s_canSelect = false;
const QString& FileRevealer::getDefaultFileManager()
@@ -180,4 +180,4 @@ bool FileRevealer::supportsArg(const QString& command, const QString& arg)
return output.contains(arg);
}
} // namespace lmms
} // namespace lmms::gui