Removed unused variable
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
parent
0975dbc3dd
commit
480faca559
@ -135,9 +135,6 @@ void ExternalResourcesPage::retranslate()
|
|||||||
|
|
||||||
void ExternalResourcesPage::itemActivated(const QModelIndex&)
|
void ExternalResourcesPage::itemActivated(const QModelIndex&)
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
||||||
m_model->setResourceEnabled(selection.indexes(), EnableAction::TOGGLE);
|
m_model->setResourceEnabled(selection.indexes(), EnableAction::TOGGLE);
|
||||||
}
|
}
|
||||||
@ -182,9 +179,6 @@ bool ExternalResourcesPage::eventFilter(QObject* obj, QEvent* ev)
|
|||||||
|
|
||||||
void ExternalResourcesPage::addItem()
|
void ExternalResourcesPage::addItem()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto list = GuiUtil::BrowseForFiles(
|
auto list = GuiUtil::BrowseForFiles(
|
||||||
helpPage(), tr("Select %1", "Select whatever type of files the page contains. Example: 'Loader Mods'").arg(displayName()),
|
helpPage(), tr("Select %1", "Select whatever type of files the page contains. Example: 'Loader Mods'").arg(displayName()),
|
||||||
m_fileSelectionFilter.arg(displayName()), APPLICATION->settings()->get("CentralModsDir").toString(), this->parentWidget());
|
m_fileSelectionFilter.arg(displayName()), APPLICATION->settings()->get("CentralModsDir").toString(), this->parentWidget());
|
||||||
@ -198,9 +192,6 @@ void ExternalResourcesPage::addItem()
|
|||||||
|
|
||||||
void ExternalResourcesPage::removeItem()
|
void ExternalResourcesPage::removeItem()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
@ -249,18 +240,12 @@ void ExternalResourcesPage::removeItems(const QItemSelection& selection)
|
|||||||
|
|
||||||
void ExternalResourcesPage::enableItem()
|
void ExternalResourcesPage::enableItem()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
||||||
m_model->setResourceEnabled(selection.indexes(), EnableAction::ENABLE);
|
m_model->setResourceEnabled(selection.indexes(), EnableAction::ENABLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ExternalResourcesPage::disableItem()
|
void ExternalResourcesPage::disableItem()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection());
|
||||||
m_model->setResourceEnabled(selection.indexes(), EnableAction::DISABLE);
|
m_model->setResourceEnabled(selection.indexes(), EnableAction::DISABLE);
|
||||||
}
|
}
|
||||||
|
@ -72,7 +72,5 @@ class ExternalResourcesPage : public QMainWindow, public BasePage {
|
|||||||
QString m_fileSelectionFilter;
|
QString m_fileSelectionFilter;
|
||||||
QString m_viewFilter;
|
QString m_viewFilter;
|
||||||
|
|
||||||
bool m_controlsEnabled = true;
|
|
||||||
|
|
||||||
std::shared_ptr<Setting> m_wide_bar_setting = nullptr;
|
std::shared_ptr<Setting> m_wide_bar_setting = nullptr;
|
||||||
};
|
};
|
||||||
|
@ -140,8 +140,6 @@ void ModFolderPage::removeItems(const QItemSelection &selection)
|
|||||||
|
|
||||||
void ModFolderPage::installMods()
|
void ModFolderPage::installMods()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
if (m_instance->typeName() != "Minecraft")
|
if (m_instance->typeName() != "Minecraft")
|
||||||
return; // this is a null instance or a legacy instance
|
return; // this is a null instance or a legacy instance
|
||||||
|
|
||||||
|
@ -67,8 +67,6 @@ bool ResourcePackPage::onSelectionChanged(const QModelIndex& current, const QMod
|
|||||||
|
|
||||||
void ResourcePackPage::downloadRPs()
|
void ResourcePackPage::downloadRPs()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
if (m_instance->typeName() != "Minecraft")
|
if (m_instance->typeName() != "Minecraft")
|
||||||
return; // this is a null instance or a legacy instance
|
return; // this is a null instance or a legacy instance
|
||||||
|
|
||||||
|
@ -46,7 +46,6 @@
|
|||||||
#include "ui/dialogs/ProgressDialog.h"
|
#include "ui/dialogs/ProgressDialog.h"
|
||||||
#include "ui/dialogs/ResourceDownloadDialog.h"
|
#include "ui/dialogs/ResourceDownloadDialog.h"
|
||||||
|
|
||||||
|
|
||||||
ShaderPackPage::ShaderPackPage(MinecraftInstance* instance, std::shared_ptr<ShaderPackFolderModel> model, QWidget* parent)
|
ShaderPackPage::ShaderPackPage(MinecraftInstance* instance, std::shared_ptr<ShaderPackFolderModel> model, QWidget* parent)
|
||||||
: ExternalResourcesPage(instance, model, parent)
|
: ExternalResourcesPage(instance, model, parent)
|
||||||
{
|
{
|
||||||
@ -61,8 +60,6 @@ ShaderPackPage::ShaderPackPage(MinecraftInstance* instance, std::shared_ptr<Shad
|
|||||||
|
|
||||||
void ShaderPackPage::downloadShaders()
|
void ShaderPackPage::downloadShaders()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
if (m_instance->typeName() != "Minecraft")
|
if (m_instance->typeName() != "Minecraft")
|
||||||
return; // this is a null instance or a legacy instance
|
return; // this is a null instance or a legacy instance
|
||||||
|
|
||||||
|
@ -69,8 +69,6 @@ bool TexturePackPage::onSelectionChanged(const QModelIndex& current, const QMode
|
|||||||
|
|
||||||
void TexturePackPage::downloadTPs()
|
void TexturePackPage::downloadTPs()
|
||||||
{
|
{
|
||||||
if (!m_controlsEnabled)
|
|
||||||
return;
|
|
||||||
if (m_instance->typeName() != "Minecraft")
|
if (m_instance->typeName() != "Minecraft")
|
||||||
return; // this is a null instance or a legacy instance
|
return; // this is a null instance or a legacy instance
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user