forked from mirror/openmw-tes3mp
Fix char -> int, fix shadowing warning
This commit is contained in:
parent
cac8de0b29
commit
e0f613661e
2 changed files with 2 additions and 2 deletions
|
@ -238,7 +238,7 @@ namespace MWScript
|
|||
else
|
||||
{
|
||||
char type = declarations.getType (iter->first);
|
||||
char index2 = declarations.getIndex (iter->first);
|
||||
int index2 = declarations.getIndex (iter->first);
|
||||
|
||||
try
|
||||
{
|
||||
|
|
|
@ -24,7 +24,7 @@ Wizard::ComponentSelectionPage::ComponentSelectionPage(QWidget *parent) :
|
|||
|
||||
}
|
||||
|
||||
void Wizard::ComponentSelectionPage::updateButton(QListWidgetItem *item)
|
||||
void Wizard::ComponentSelectionPage::updateButton(QListWidgetItem*)
|
||||
{
|
||||
if (field(QLatin1String("installation.new")).toBool() == true)
|
||||
return; // Morrowind is always checked here
|
||||
|
|
Loading…
Reference in a new issue