mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +01:00
MathToolbox methods moved to its parent, Toolbox (in escher). Node and ToolboxNode classes renamed MessageTree and ToolboxMessageTree. They are now in escher/, not in apps/. Change-Id: Ibb26b0e9016094cef79506a1e9fc6dfb492d7103
14 lines
295 B
C++
14 lines
295 B
C++
#include <escher/toolbox_message_tree.h>
|
|
|
|
I18n::Message ToolboxMessageTree::text() const {
|
|
return m_text;
|
|
}
|
|
|
|
I18n::Message ToolboxMessageTree::insertedText() const {
|
|
return m_insertedText;
|
|
}
|
|
|
|
const MessageTree * ToolboxMessageTree::children(int index) const {
|
|
return &m_children[index];
|
|
}
|