1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Whitespace

This commit is contained in:
ed 2021-10-14 12:31:17 +01:00
parent 7d1918b385
commit 428260a6fd
3 changed files with 4 additions and 4 deletions

View file

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

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);
template<typename ValueType>
template <typename ValueType>
static Rectangle<ValueType> convertPhysicalScreenRectangleToLogical (Rectangle<ValueType> r, HWND h) noexcept
{
if (isPerMonitorDPIAwareWindow (h))
@ -623,7 +623,7 @@ static Rectangle<ValueType> convertPhysicalScreenRectangleToLogical (Rectangle<V
return r;
}
template<typename ValueType>
template <typename ValueType>
static Rectangle<ValueType> convertLogicalScreenRectangleToPhysical (Rectangle<ValueType> r, HWND h) noexcept
{
if (isPerMonitorDPIAwareWindow (h))

View file

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