Kaydet (Commit) 82ef1b81 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid reserved identifier

Change-Id: I4e846dcfa3325a1b700da0ec16a380b97a9fb2ed
üst cafad3b7
......@@ -141,7 +141,7 @@ namespace svt { namespace table
const vcl::KeyCode& rKeyCode = rKEvt.GetKeyCode();
sal_uInt16 nKeyCode = rKeyCode.GetCode();
struct _ActionMapEntry
struct ActionMapEntry
{
sal_uInt16 nKeyCode;
sal_uInt16 nKeyModifier;
......@@ -169,7 +169,7 @@ namespace svt { namespace table
{ 0, 0, invalidTableControlAction }
};
const _ActionMapEntry* pActions = aKnownActions;
const ActionMapEntry* pActions = aKnownActions;
for ( ; pActions->eAction != invalidTableControlAction; ++pActions )
{
if ( ( pActions->nKeyCode == nKeyCode ) && ( pActions->nKeyModifier == rKeyCode.GetModifier() ) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment