// Created: 28.06.99
// RCS-ID: $Id$
// Copyright: (c) Vadim Zeitlin
-// Licence: wxWidgets licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// ============================================================================
if (flags & wxYES)
{
- yes = new wxButton( this, wxID_YES, _("Yes"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS );
+ yes = new wxButton(this, wxID_YES, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize, wxCLIP_SIBLINGS);
inner_yes_no->Add( yes, 0, wxLEFT|wxRIGHT, margin );
}
if (flags & wxNO)
{
- no = new wxButton( this, wxID_NO, _("No"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS );
+ no = new wxButton(this, wxID_NO, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize, wxCLIP_SIBLINGS);
inner_yes_no->Add( no, 0, wxLEFT|wxRIGHT, margin );
}
if (flags & wxOK)
{
- ok = new wxButton( this, wxID_OK, _("OK"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS );
+ ok = new wxButton(this, wxID_OK, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize, wxCLIP_SIBLINGS);
inner_rest->Add( ok, 0, wxLEFT|wxRIGHT, margin );
}
if (flags & wxFORWARD)
- inner_rest->Add( new wxButton( this, wxID_FORWARD, _("Forward"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS ), 0, wxLEFT|wxRIGHT, margin );
+ inner_rest->Add(new wxButton(this, wxID_FORWARD, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize,
+ wxCLIP_SIBLINGS),
+ 0, wxLEFT|wxRIGHT, margin);
if (flags & wxBACKWARD)
- inner_rest->Add( new wxButton( this, wxID_BACKWARD, _("Backward"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS ), 0, wxLEFT|wxRIGHT, margin );
+ inner_rest->Add(new wxButton(this, wxID_BACKWARD, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize,
+ wxCLIP_SIBLINGS),
+ 0, wxLEFT|wxRIGHT, margin);
if (flags & wxSETUP)
inner_rest->Add( new wxButton( this, wxID_SETUP, _("Setup"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS ), 0, wxLEFT|wxRIGHT, margin );
inner_rest->Add( new wxButton( this, wxID_MORE, _("More..."),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS ), 0, wxLEFT|wxRIGHT, margin );
if (flags & wxHELP)
- inner_rest->Add( new wxButton( this, wxID_HELP, _("Help"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS ), 0, wxLEFT|wxRIGHT, margin );
+ inner_rest->Add(new wxButton(this, wxID_HELP, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize,
+ wxCLIP_SIBLINGS),
+ 0, wxLEFT|wxRIGHT, margin);
if (flags & wxCANCEL)
{
- wxButton *cancel = new wxButton( this, wxID_CANCEL, _("Cancel"),wxDefaultPosition,wxDefaultSize,wxCLIP_SIBLINGS );
+ wxButton *cancel = new wxButton(this, wxID_CANCEL, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize,
+ wxCLIP_SIBLINGS);
inner_rest->Add( cancel, 0, wxLEFT|wxRIGHT, margin );
}