summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-07-24 14:44:50 +0300
committerTor Lillqvist <tml@iki.fi>2013-07-24 15:51:11 +0300
commitacf6241887bc919fa6a83dafe2bede780ed96be7 (patch)
tree5d6f0c198473f959fdec1433dd6e4b70772d7eb6 /vcl
parent3655cc9fe6b7a07adea7e26d23474b5352506e4d (diff)
Remove dead function: ImplgetCounterPart()
Change-Id: If1196d56db250a429d467e5dda7f426b5c7f9113
Diffstat (limited to 'vcl')
-rw-r--r--vcl/aqua/source/gdi/salnativewidgets.cxx22
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)