mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-01 04:21:59 +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));}
|
bool compatible(const Preset& other) {return (this->group == preset_t::Printer || (compatible(other.name) && other.group == preset_t::Printer));}
|
||||||
|
|
||||||
/// Format the name appropriately.
|
/// 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);
|
bool file_exists(wxString name);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user