diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2022-06-06 10:25:24 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2022-06-09 13:51:21 +0200 |
commit | ae00b6eba342735e52d888ba2b3b7a8a83e088c1 (patch) | |
tree | bf2742996f5354d62e1f861bbe726c8cd1d93470 /geometrymanager.h | |
parent | ba6738dc00d068e5c54aae1cc3c9a8ea93681a91 (diff) | |
download | skin-nopacity-ae00b6eba342735e52d888ba2b3b7a8a83e088c1.tar.gz skin-nopacity-ae00b6eba342735e52d888ba2b3b7a8a83e088c1.tar.bz2 |
Remove some unnessesary variable
channelX is always 0
channelWidth is always channelOsdWidth
replayWidth is always replayOsdWidth
replayHeight is always replayOsdHeight
Diffstat (limited to 'geometrymanager.h')
-rw-r--r-- | geometrymanager.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/geometrymanager.h b/geometrymanager.h index 98de55f..dfd7fc7 100644 --- a/geometrymanager.h +++ b/geometrymanager.h @@ -61,8 +61,8 @@ class cGeometryManager { //DisplayChannel Sizes int channelOsdLeft, channelOsdTop; int channelOsdWidth, channelOsdHeight; - int channelX, channelTop; - int channelWidth, channelHeight; + int channelTop; + int channelHeight; int channelHeaderHeight; int channelFooterHeight; int channelContentHeight; @@ -88,8 +88,6 @@ class cGeometryManager { //DisplayReplay Sizes int replayOsdLeft, replayOsdTop; int replayOsdWidth, replayOsdHeight; - int replayWidth; - int replayHeight; int replayHeaderHeight; int replayInfo2Height; int replayProgressBarHeight; |