Browse Source

Doh! Fixed a typo.

tags/2021-05-28
jules 12 years ago
parent
commit
d9c89a2a5f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_gui_basics/native/juce_win32_Windowing.cpp

+ 2
- 2
modules/juce_gui_basics/native/juce_win32_Windowing.cpp View File

@@ -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();


Loading…
Cancel
Save