| 201 | } |
| 202 | |
| 203 | void SelectionBar::AddTitle( |
| 204 | const TranslatableString & Title, wxSizer * pSizer ){ |
| 205 | const auto translated = Title.Translation(); |
| 206 | auStaticText * pTitle = safenew auStaticText(this, translated ); |
| 207 | pTitle->SetBackgroundColour( theTheme.Colour( clrMedium )); |
| 208 | pTitle->SetForegroundColour( theTheme.Colour( clrTrackPanelText ) ); |
| 209 | pSizer->Add( pTitle, 0, wxEXPAND | wxRIGHT, 5 ); |
| 210 | } |
| 211 | |
| 212 | |
| 213 | void SelectionBar::AddTime(int id, wxSizer * pSizer) |
no test coverage detected