Reverted some Win64 gcc 4.8 related stuff as we are on gcc4.9 now, Issue 2708

This commit is contained in:
Ingo
2015-03-09 15:01:37 +01:00
parent b5a7896aca
commit 1aa2ae3903
5 changed files with 7 additions and 7 deletions

View File

@@ -206,7 +206,7 @@ void FileBrowserEntry::updateImage (rtengine::IImage8* img, double scale, rtengi
param->img = img;
param->scale = scale;
param->cropParams = cropParams;
#if __GNUC__ == 4 && __GNUC_MINOR__ >= 8 && defined( WIN32 ) && defined(__x86_64__)
#if __GNUC__ == 4 && __GNUC_MINOR__ == 8 && defined( WIN32 ) && defined(__x86_64__)
g_idle_add_full (G_PRIORITY_DEFAULT, updateImageUI, param, NULL);
#else
g_idle_add_full (G_PRIORITY_LOW, updateImageUI, param, NULL);