diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-03 19:03:12 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-03 19:03:12 -0200 |
commit | a1932eec23589ed67d824873b37de3e83a09cd24 (patch) | |
tree | db2bed8e7a9c87ad6115a1b8a6a347cad6753b06 /Project/Workspace.h | |
parent | 2c0b51586b3b2243ae0fdcd653139818e4b4e23e (diff) | |
download | PSP.git-a1932eec23589ed67d824873b37de3e83a09cd24.tar.gz PSP.git-a1932eec23589ed67d824873b37de3e83a09cd24.tar.xz PSP.git-a1932eec23589ed67d824873b37de3e83a09cd24.zip |
Text element optimizated, but buggy
Element/parent search buggy
Diffstat (limited to 'Project/Workspace.h')
-rw-r--r-- | Project/Workspace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/Workspace.h b/Project/Workspace.h index e900604..095feac 100644 --- a/Project/Workspace.h +++ b/Project/Workspace.h @@ -78,7 +78,7 @@ public: void SetName(wxString name) { m_name = name; } void SetElementList(std::vector<Element*> elementList) { m_elementList = elementList; } - void SetTextList(std::vector<Text*> textList) { m_textList = textList; } + void SetTextList(std::vector<Text*> textList); void SetStatusBarText(wxString text) { m_statusBar->SetStatusText(text); } void SetWorkspaceMode(WorkspaceMode mode) { m_mode = mode; } void SetSavedPath(wxFileName savedPath) { m_savedPath = savedPath; } |