Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-05-10 13:28:56 +0300
committerYuSanka <yusanka@gmail.com>2019-05-10 13:28:56 +0300
commit62590d291c18ffa4c500eabbd16c47ca0f319453 (patch)
treeb8d630f7b066f1908908cb9f79af1621c0dff8f8 /src/slic3r/GUI/ButtonsDescription.cpp
parent580447317134f665a267f7291ef5b7378f676b11 (diff)
use _() instead of _utf8() for ButtonsDescription
Diffstat (limited to 'src/slic3r/GUI/ButtonsDescription.cpp')
-rw-r--r--src/slic3r/GUI/ButtonsDescription.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/ButtonsDescription.cpp b/src/slic3r/GUI/ButtonsDescription.cpp
index f9ab9b89c..0610199f5 100644
--- a/src/slic3r/GUI/ButtonsDescription.cpp
+++ b/src/slic3r/GUI/ButtonsDescription.cpp
@@ -26,9 +26,9 @@ ButtonsDescription::ButtonsDescription(wxWindow* parent, const std::vector<Entry
{
auto icon = new wxStaticBitmap(this, wxID_ANY, entry.bitmap->bmp());
grid_sizer->Add(icon, -1, wxALIGN_CENTRE_VERTICAL);
- auto description = new wxStaticText(this, wxID_ANY, _utf8(entry.symbol));
+ auto description = new wxStaticText(this, wxID_ANY, _(entry.symbol));
grid_sizer->Add(description, -1, wxALIGN_CENTRE_VERTICAL);
- description = new wxStaticText(this, wxID_ANY, _utf8(entry.explanation));
+ description = new wxStaticText(this, wxID_ANY, _(entry.explanation));
grid_sizer->Add(description, -1, wxALIGN_CENTRE_VERTICAL | wxEXPAND);
}