diff options
| author | Tannin <devnull@localhost> | 2014-07-17 20:04:22 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-07-17 20:04:22 +0200 |
| commit | 4e5a67fc063243c4c10e04b5f601108dd01357f3 (patch) | |
| tree | e327a00a93b6d72c286830a7769cd7be9b15e3f0 /src/shared/directoryentry.cpp | |
| parent | 67b0268e700072b9ee273a40251b422a8f55c3ba (diff) | |
- bugfix: broke qt4 compatibility in trying to support qt5
- bugfix: overwrite dialog displayed system drives if the overwrite directory didn't exist
- bugfix: ini tweak activation wasn't saved
Diffstat (limited to 'src/shared/directoryentry.cpp')
| -rw-r--r-- | src/shared/directoryentry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/directoryentry.cpp b/src/shared/directoryentry.cpp index 87431ea8..aead0cca 100644 --- a/src/shared/directoryentry.cpp +++ b/src/shared/directoryentry.cpp @@ -499,7 +499,7 @@ static bool SupportOptimizedFind() ::VerSetConditionMask(0, VER_MAJORVERSION, VER_GREATER_EQUAL),
VER_MINORVERSION, VER_GREATER_EQUAL);
- bool res = ::VerifyVersionInfo(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, mask);
+ bool res = ::VerifyVersionInfo(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, mask) == TRUE;
return res;
}
|
