use ostream_write( CopiedString )

This commit is contained in:
Garux
2021-09-18 15:30:11 +03:00
parent b78513f9f8
commit 02a3b9c026
39 changed files with 104 additions and 105 deletions

View File

@@ -308,7 +308,7 @@ public:
else
{
Operation* operation = m_undo_stack.back();
globalOutputStream() << "Undo: " << operation->m_command.c_str() << "\n";
globalOutputStream() << "Undo: " << operation->m_command << "\n";
startRedo();
trackersUndo();
@@ -324,7 +324,7 @@ public:
else
{
Operation* operation = m_redo_stack.back();
globalOutputStream() << "Redo: " << operation->m_command.c_str() << "\n";
globalOutputStream() << "Redo: " << operation->m_command << "\n";
startUndo();
trackersRedo();