Wrap code for better readability

This commit is contained in:
Simon De Backer
2020-09-07 22:03:40 +02:00
parent 8ee38fab9e
commit 5d92393ee7
202 changed files with 4031 additions and 2153 deletions

View File

@@ -55,7 +55,8 @@ bool ChangeElementInformationCommand::mergeWith(const QUndoCommand *other)
/**
@brief ChangeElementInformationCommand::undo
*/
void ChangeElementInformationCommand::undo() {
void ChangeElementInformationCommand::undo()
{
m_element -> setElementInformations(m_old_info);
updateProjectDB();
}
@@ -63,7 +64,8 @@ void ChangeElementInformationCommand::undo() {
/**
@brief ChangeElementInformationCommand::redo
*/
void ChangeElementInformationCommand::redo() {
void ChangeElementInformationCommand::redo()
{
m_element -> setElementInformations(m_new_info);
updateProjectDB();
}