This commit is contained in:
Laurent Trinques
2019-11-18 12:53:05 +01:00
parent b39e000fa8
commit 41af7abadb
2 changed files with 2 additions and 2 deletions

View File

@@ -1145,7 +1145,7 @@ void QETElementEditor::slot_reload()
/** /**
* @brief QETElementEditor::slot_save * @brief QETElementEditor::slot_save
* Save the current editing element. * Save the current editing element.
* If the filepath or location is unknow, use save_as instead * If the filepath or location is unknown, use save_as instead
* @return true if save with success * @return true if save with success
*/ */
bool QETElementEditor::slot_save() bool QETElementEditor::slot_save()

View File

@@ -1407,7 +1407,7 @@ QString Element::linkTypeToString() const
case Terminale: case Terminale:
return "Terminale"; return "Terminale";
default: default:
return "Unknow"; return "Unknown";
} }
} }