summaryrefslogtreecommitdiff
path: root/svtools/source/control/valueset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/valueset.cxx')
-rw-r--r--svtools/source/control/valueset.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx
index 7d89298a2e6e..a02c8258c6c4 100644
--- a/svtools/source/control/valueset.cxx
+++ b/svtools/source/control/valueset.cxx
@@ -1202,7 +1202,7 @@ void ValueSet::KeyInput( const KeyEvent& rKeyEvent )
return;
}
nVStep *= mnVisLines;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case KEY_UP:
if (nCurPos != VALUESET_ITEM_NONEITEM)
{
@@ -1239,7 +1239,7 @@ void ValueSet::KeyInput( const KeyEvent& rKeyEvent )
return;
}
nVStep *= mnVisLines;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case KEY_DOWN:
if (nCurPos != nLastItem)
{
@@ -1264,7 +1264,7 @@ void ValueSet::KeyInput( const KeyEvent& rKeyEvent )
Select();
break;
}
- SAL_FALLTHROUGH;
+ [[fallthrough]];
default:
Control::KeyInput( rKeyEvent );
return;
@@ -2478,7 +2478,7 @@ bool SvtValueSet::KeyInput( const KeyEvent& rKeyEvent )
return CustomWidgetController::KeyInput(rKeyEvent);
}
nVStep *= mnVisLines;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case KEY_UP:
if (nCurPos != VALUESET_ITEM_NONEITEM)
{
@@ -2514,7 +2514,7 @@ bool SvtValueSet::KeyInput( const KeyEvent& rKeyEvent )
return CustomWidgetController::KeyInput(rKeyEvent);
}
nVStep *= mnVisLines;
- SAL_FALLTHROUGH;
+ [[fallthrough]];
case KEY_DOWN:
if (nCurPos != nLastItem)
{
@@ -2539,7 +2539,7 @@ bool SvtValueSet::KeyInput( const KeyEvent& rKeyEvent )
Select();
break;
}
- SAL_FALLTHROUGH;
+ [[fallthrough]];
default:
return CustomWidgetController::KeyInput(rKeyEvent);
}