UEFITool 0.19.3

- new program icon made by Alexander Zhidkov
- spaces instead of tabs in source files
This commit is contained in:
Nikolaj Schlej 2014-11-18 16:01:20 +01:00
parent 39e53719d4
commit 93973d0042
11 changed files with 163 additions and 163 deletions

View file

@ -70,14 +70,14 @@ QString itemSubtypeToQString(const UINT8 type, const UINT8 subtype)
else
return QObject::tr("Unknown");
case Types::Padding:
if (subtype == Subtypes::ZeroPadding)
return QObject::tr("Empty(0x00)");
else if (subtype == Subtypes::OnePadding)
return QObject::tr("Empty(0xFF)");
else if (subtype == Subtypes::DataPadding)
return QObject::tr("Nonempty");
else
return "";
if (subtype == Subtypes::ZeroPadding)
return QObject::tr("Empty(0x00)");
else if (subtype == Subtypes::OnePadding)
return QObject::tr("Empty(0xFF)");
else if (subtype == Subtypes::DataPadding)
return QObject::tr("Nonempty");
else
return "";
case Types::Volume:
if (subtype == Subtypes::BootVolume)
return QObject::tr("Boot");