mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-31 05:42:01 +08:00
Properly convert to wxString
This commit is contained in:
parent
fd1c727910
commit
dec175f9de
@ -35,7 +35,7 @@ public:
|
||||
bool compatible(const Preset& other) {return (this->group == preset_t::Printer || (compatible(other.name) && other.group == preset_t::Printer));}
|
||||
|
||||
/// Format the name appropriately.
|
||||
wxString dropdown_name() { return (this->dirty() ? wxString(this->name) << " " << _("(modified)") : this->name); }
|
||||
wxString dropdown_name() { return (this->dirty() ? wxString(this->name) << " " << _("(modified)") : wxString(this->name)); }
|
||||
|
||||
bool file_exists(wxString name);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user