[FancyZones] Remove m_workArea from ZoneWindow (#5185)

* Removed m_workArea from ZoneWindow

* Remove another unused variable
This commit is contained in:
Ivan Stošić
2020-07-24 11:17:39 +02:00
committed by GitHub
parent ff1e04b957
commit 5d66473a4f
5 changed files with 26 additions and 42 deletions

View File

@@ -111,19 +111,16 @@ struct ZoneSetConfig
ZoneSetConfig(
GUID id,
FancyZonesDataTypes::ZoneSetLayoutType layoutType,
HMONITOR monitor,
PCWSTR resolutionKey) noexcept :
HMONITOR monitor) noexcept :
Id(id),
LayoutType(layoutType),
Monitor(monitor),
ResolutionKey(resolutionKey)
Monitor(monitor)
{
}
GUID Id{};
FancyZonesDataTypes::ZoneSetLayoutType LayoutType{};
HMONITOR Monitor{};
PCWSTR ResolutionKey{};
};
winrt::com_ptr<IZoneSet> MakeZoneSet(ZoneSetConfig const& config) noexcept;