From d9c89a2a5f3255ab8932d04331fdba0bb54392fe Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 26 Mar 2013 15:42:48 +0000 Subject: [PATCH] Doh! Fixed a typo. --- modules/juce_gui_basics/native/juce_win32_Windowing.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_gui_basics/native/juce_win32_Windowing.cpp b/modules/juce_gui_basics/native/juce_win32_Windowing.cpp index 93ea916923..a849a6f228 100644 --- a/modules/juce_gui_basics/native/juce_win32_Windowing.cpp +++ b/modules/juce_gui_basics/native/juce_win32_Windowing.cpp @@ -584,7 +584,7 @@ public: h + windowBorder.getTopAndBottom(), SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER | SWP_NOOWNERZORDER); - if (isValidPeer (this) + if (isValidPeer (this)) { updateBorderSize(); repaintNowIfTransparent(); @@ -603,7 +603,7 @@ public: h + windowBorder.getTopAndBottom(), SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOOWNERZORDER); - if (isValidPeer (this) + if (isValidPeer (this)) { updateBorderSize(); repaintNowIfTransparent();