summaryrefslogtreecommitdiff
path: root/vcl/headless
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-31 18:39:32 +0200
committerNoel Grandin <noel@peralex.com>2015-01-07 11:20:43 +0200
commit079590c9097a9491b31f1ef1b30d67d42bd0139a (patch)
treee77fb91fbc3b4b7312bcd29875434b1d1344e3e7 /vcl/headless
parente197bcc6285b69179463b5847fe8ce459806455a (diff)
fdo#84938: convert INDICATOR_ #defines to 'enum class'
and replace SalIndicatorState, it serves the same purpose Change-Id: I618b8946b8e2527883eecb13060b2256abc505b6
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpframe.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx
index 4df65242fe24..86915bfd6a18 100644
--- a/vcl/headless/svpframe.cxx
+++ b/vcl/headless/svpframe.cxx
@@ -460,11 +460,9 @@ SalFrame::SalPointerState SvpSalFrame::GetPointerState()
return aState;
}
-SalFrame::SalIndicatorState SvpSalFrame::GetIndicatorState()
+KeyIndicatorState SvpSalFrame::GetIndicatorState()
{
- SalIndicatorState aState;
- aState.mnState = 0;
- return aState;
+ return KeyIndicatorState::NONE;
}
void SvpSalFrame::SimulateKeyPress( sal_uInt16 /*nKeyCode*/ )