From b46828f42de40d4e581b620849ed4ae0e8b2cc22 Mon Sep 17 00:00:00 2001 From: Joseph Lenox Date: Sun, 18 Nov 2018 11:36:46 -0600 Subject: [PATCH] Use \ instead of @ for doxygen comment --- src/GUI/Preset.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/Preset.hpp b/src/GUI/Preset.hpp index 53d553d8a..fd7d79748 100644 --- a/src/GUI/Preset.hpp +++ b/src/GUI/Preset.hpp @@ -49,7 +49,7 @@ public: /// Search the compatible_printers config option list for this preset name. /// Assume that Printer configs are compatible with other Printer configs - /// @param [in] Printer preset name to use to compare. + /// \param [in] Printer preset name to use to compare. bool compatible(const std::string& printer_name) const; bool compatible(const wxString& printer_name) const { return this->compatible(printer_name.ToStdString()); } bool compatible(const Preset& other) const {return (this->group == preset_t::Printer || (compatible(other.name) && other.group == preset_t::Printer));}