From 761223bcdfa83b37a4a217d2ba218d0af656478f Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 2 Jan 2012 20:39:50 +0000 Subject: [PATCH] (svn r23718) -Fix [FS#4936]: rescanai caused crash when the AI settings of an AI was opened --- src/ai/ai_core.cpp | 2 +- src/game/game_core.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ai/ai_core.cpp b/src/ai/ai_core.cpp index 3a337ab0b1..16bf96dc64 100644 --- a/src/ai/ai_core.cpp +++ b/src/ai/ai_core.cpp @@ -333,7 +333,7 @@ InvalidateWindowData(WC_AI_LIST, 0, 1); SetWindowClassesDirty(WC_AI_DEBUG); - SetWindowDirty(WC_AI_SETTINGS, 0); + InvalidateWindowClassesData(WC_AI_SETTINGS); } #if defined(ENABLE_NETWORK) diff --git a/src/game/game_core.cpp b/src/game/game_core.cpp index 2816a62232..27dd63b54b 100644 --- a/src/game/game_core.cpp +++ b/src/game/game_core.cpp @@ -178,7 +178,7 @@ InvalidateWindowData(WC_AI_LIST, 0, 1); SetWindowClassesDirty(WC_AI_DEBUG); - SetWindowDirty(WC_AI_SETTINGS, 0); + InvalidateWindowClassesData(WC_AI_SETTINGS); }