- statbarPaneStyleMenu->Append(StatusBar_SetPaneStyleNormal, wxT("&Normal"), wxT("Sets the style of the first field to normal (sunken) look"), true);
- statbarPaneStyleMenu->Append(StatusBar_SetPaneStyleFlat, wxT("&Flat"), wxT("Sets the style of the first field to flat look"), true);
- statbarPaneStyleMenu->Append(StatusBar_SetPaneStyleRaised, wxT("&Raised"), wxT("Sets the style of the first field to raised look"), true);
- statbarMenu->Append(StatusBar_SetPaneStyle, wxT("Field style"), statbarPaneStyleMenu);
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleNormal,
+ wxT("&Normal"),
+ wxT("Sets the style of the first field to normal (sunken) look")
+ );
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleFlat,
+ wxT("&Flat"),
+ wxT("Sets the style of the first field to flat look")
+ );
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleRaised,
+ wxT("&Raised"),
+ wxT("Sets the style of the first field to raised look")
+ );
+ statbarPaneStyleMenu->AppendCheckItem
+ (
+ StatusBar_SetPaneStyleSunken,
+ wxT("&Sunken"),
+ wxT("Sets the style of the first field to sunken look")
+ );
+ statbarMenu->Append(StatusBar_SetPaneStyle, wxT("Field style"),
+ statbarPaneStyleMenu);