NOISSUE and even more warnings gone
This commit is contained in:
parent
c329bc73c0
commit
4133247bff
@ -94,7 +94,7 @@ QList<JavaInstallPtr> JavaUtils::FindJavaFromRegistryKey(DWORD keyType, QString
|
||||
// Iterate until RegEnumKeyEx fails
|
||||
if (numSubKeys > 0)
|
||||
{
|
||||
for (int i = 0; i < numSubKeys; i++)
|
||||
for (DWORD i = 0; i < numSubKeys; i++)
|
||||
{
|
||||
subKeyNameSize = 255;
|
||||
retCode = RegEnumKeyEx(jreKey, i, subKeyName, &subKeyNameSize, NULL, NULL, NULL,
|
||||
|
@ -28,8 +28,6 @@ using namespace Json;
|
||||
namespace Meta
|
||||
{
|
||||
|
||||
static const int currentFormatVersion = 0;
|
||||
|
||||
// Index
|
||||
static BaseEntity::Ptr parseIndexInternal(const QJsonObject &obj)
|
||||
{
|
||||
|
@ -161,7 +161,6 @@ void ExternalToolsPage::on_mceditPathBtn_clicked()
|
||||
do
|
||||
{
|
||||
#ifdef Q_OS_OSX
|
||||
#warning stuff
|
||||
raw_dir = QFileDialog::getOpenFileName(this, tr("MCEdit Application"), raw_dir);
|
||||
#else
|
||||
raw_dir = QFileDialog::getExistingDirectory(this, tr("MCEdit Folder"), raw_dir);
|
||||
|
Loading…
Reference in New Issue
Block a user