Properly convert to wxString

This commit is contained in:
Joseph Lenox 2018-07-22 21:32:34 -05:00
parent fd1c727910
commit dec175f9de

View File

@ -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);