Browse Source

Whitespace

v6.1.6
ed 4 years ago
parent
commit
428260a6fd
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      modules/juce_gui_basics/native/accessibility/juce_win32_WindowsUIAWrapper.h
  2. +2
    -2
      modules/juce_gui_basics/native/juce_win32_Windowing.cpp
  3. +1
    -1
      modules/juce_gui_basics/widgets/juce_ListBox.cpp

+ 1
- 1
modules/juce_gui_basics/native/accessibility/juce_win32_WindowsUIAWrapper.h View File

@@ -124,7 +124,7 @@ private:
} }
//============================================================================== //==============================================================================
template<typename FuncType>
template <typename FuncType>
static FuncType getUiaFunction (HMODULE module, StringRef funcName) static FuncType getUiaFunction (HMODULE module, StringRef funcName)
{ {
return (FuncType) GetProcAddress (module, funcName); return (FuncType) GetProcAddress (module, funcName);


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

@@ -614,7 +614,7 @@ static POINT POINTFromPoint (Point<int> p) noexcept { return { p.x, p.y
//============================================================================== //==============================================================================
static const Displays::Display* getCurrentDisplayFromScaleFactor (HWND hwnd); static const Displays::Display* getCurrentDisplayFromScaleFactor (HWND hwnd);
template<typename ValueType>
template <typename ValueType>
static Rectangle<ValueType> convertPhysicalScreenRectangleToLogical (Rectangle<ValueType> r, HWND h) noexcept static Rectangle<ValueType> convertPhysicalScreenRectangleToLogical (Rectangle<ValueType> r, HWND h) noexcept
{ {
if (isPerMonitorDPIAwareWindow (h)) if (isPerMonitorDPIAwareWindow (h))
@@ -623,7 +623,7 @@ static Rectangle<ValueType> convertPhysicalScreenRectangleToLogical (Rectangle<V
return r; return r;
} }
template<typename ValueType>
template <typename ValueType>
static Rectangle<ValueType> convertLogicalScreenRectangleToPhysical (Rectangle<ValueType> r, HWND h) noexcept static Rectangle<ValueType> convertLogicalScreenRectangleToPhysical (Rectangle<ValueType> r, HWND h) noexcept
{ {
if (isPerMonitorDPIAwareWindow (h)) if (isPerMonitorDPIAwareWindow (h))


+ 1
- 1
modules/juce_gui_basics/widgets/juce_ListBox.cpp View File

@@ -26,7 +26,7 @@
namespace juce namespace juce
{ {
template<typename RowComponentType>
template <typename RowComponentType>
static AccessibilityActions getListRowAccessibilityActions (RowComponentType& rowComponent) static AccessibilityActions getListRowAccessibilityActions (RowComponentType& rowComponent)
{ {
auto onFocus = [&rowComponent] auto onFocus = [&rowComponent]


Loading…
Cancel
Save