rename snake_case to camelCase
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
8daa1219a5
commit
44894a29b1
7 changed files with 38 additions and 38 deletions
|
@ -62,7 +62,7 @@ class ResourcePage : public QWidget, public BasePage {
|
|||
|
||||
[[nodiscard]] bool setCurrentPack(ModPlatform::IndexedPack::Ptr);
|
||||
[[nodiscard]] auto getCurrentPack() const -> ModPlatform::IndexedPack::Ptr;
|
||||
[[nodiscard]] auto getDialog() const -> const ResourceDownloadDialog* { return m_parent_dialog; }
|
||||
[[nodiscard]] auto getDialog() const -> const ResourceDownloadDialog* { return m_parentDialog; }
|
||||
[[nodiscard]] auto getModel() const -> ResourceModel* { return m_model; }
|
||||
|
||||
protected:
|
||||
|
@ -99,22 +99,22 @@ class ResourcePage : public QWidget, public BasePage {
|
|||
virtual void openUrl(const QUrl&);
|
||||
|
||||
public:
|
||||
BaseInstance& m_base_instance;
|
||||
BaseInstance& m_baseInstance;
|
||||
|
||||
protected:
|
||||
Ui::ResourcePage* m_ui;
|
||||
|
||||
ResourceDownloadDialog* m_parent_dialog = nullptr;
|
||||
ResourceDownloadDialog* m_parentDialog = nullptr;
|
||||
ResourceModel* m_model = nullptr;
|
||||
|
||||
int m_selected_version_index = -1;
|
||||
int m_selectedVersionIndex = -1;
|
||||
|
||||
ProgressWidget m_fetch_progress;
|
||||
ProgressWidget m_fetchProgress;
|
||||
|
||||
// Used to do instant searching with a delay to cache quick changes
|
||||
QTimer m_search_timer;
|
||||
QTimer m_searchTimer;
|
||||
|
||||
bool m_do_not_jump_to_mod = false;
|
||||
bool m_doNotJumpToMod = false;
|
||||
};
|
||||
|
||||
} // namespace ResourceDownload
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue