diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-07-24 14:44:50 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-07-24 15:51:11 +0300 |
commit | acf6241887bc919fa6a83dafe2bede780ed96be7 (patch) | |
tree | 5d6f0c198473f959fdec1433dd6e4b70772d7eb6 /vcl/aqua | |
parent | 3655cc9fe6b7a07adea7e26d23474b5352506e4d (diff) |
Remove dead function: ImplgetCounterPart()
Change-Id: If1196d56db250a429d467e5dda7f426b5c7f9113
Diffstat (limited to 'vcl/aqua')
-rw-r--r-- | vcl/aqua/source/gdi/salnativewidgets.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/vcl/aqua/source/gdi/salnativewidgets.cxx b/vcl/aqua/source/gdi/salnativewidgets.cxx index 3de411824d6b..0921fb135c27 100644 --- a/vcl/aqua/source/gdi/salnativewidgets.cxx +++ b/vcl/aqua/source/gdi/salnativewidgets.cxx @@ -72,28 +72,6 @@ void AquaBlinker::Blink( AquaSalFrame* pFrame, const Rectangle& rRect, int nTime pNew->Start(); } -ControlPart ImplgetCounterPart( ControlPart nPart ) -{ - ControlPart nCounterPart = 0; - switch (nPart) - { - case PART_BUTTON_UP: - nCounterPart = PART_BUTTON_DOWN; - break; - case PART_BUTTON_DOWN: - nCounterPart = PART_BUTTON_UP; - break; - case PART_BUTTON_LEFT: - nCounterPart = PART_BUTTON_RIGHT; - break; - case PART_BUTTON_RIGHT: - nCounterPart = PART_BUTTON_LEFT; - break; - } - return nCounterPart; -} - - // Helper returns an HIRect static HIRect ImplGetHIRectFromRectangle(Rectangle aRect) |