#if (GTK_MINOR_VERSION > 0)
m_text << _T('_');
} else
- if (*pc == _T('/'))
+ if (*pc == _T('/')) /* we have to filter out slashes ... */
{
- m_text << _T('\\');
+ m_text << _T('\\'); /* ... and replace them with back slashes */
#endif
}
else
entry.accelerator = hotbuf;
break;
}
+ case _T('F'): /* function keys */
+ {
+ strcpy( hotbuf, hotkey.mb_str() );
+ entry.accelerator = hotbuf;
+ break;
+ }
default:
{
}