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:
@ -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
|
||||
|
Reference in New Issue
Block a user