+ DST_PREFIXTEXT | (st & wxODDisabled ? DSS_DISABLED : 0));
+
+ if ( !m_strAccel.empty() )
+ {
+ RECT r;
+ r.top = rc.GetTop();
+ r.left = rc.GetLeft();
+ r.right = rc.GetRight() - GetMarginWidth();
+ r.bottom = rc.GetBottom();
+
+ DrawText(hdc, m_strAccel, m_strAccel.length(), &r,
+ DT_SINGLELINE | DT_RIGHT | DT_VCENTER);
+ }