refactor: put resource downloading classes in common namespace

Puts them all inside the 'ResourceDownload' namespace, so that it's a
bit clearer from the outside that those belong to the same 'module'.

Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
flow
2022-12-16 19:03:52 -03:00
parent 6a18079953
commit 433a802c6e
21 changed files with 156 additions and 81 deletions

View File

@ -25,8 +25,9 @@
class QDialogButtonBox;
class ModDownloadDialog final : public ResourceDownloadDialog
{
namespace ResourceDownload {
class ModDownloadDialog final : public ResourceDownloadDialog {
Q_OBJECT
public:
@ -45,3 +46,5 @@ class ModDownloadDialog final : public ResourceDownloadDialog
private:
BaseInstance* m_instance;
};
} // namespace ResourceDownload