| 739 | } |
| 740 | |
| 741 | std::string InputEditorModel::inputLabel(int column) |
| 742 | { |
| 743 | if (column < COLUMN_SPECIAL_SIZE) |
| 744 | return ""; |
| 745 | |
| 746 | if (column == columnCount() - 1) |
| 747 | return ""; |
| 748 | |
| 749 | return movie->editor->input_set[column-COLUMN_SPECIAL_SIZE].description; |
| 750 | } |
| 751 | |
| 752 | void InputEditorModel::renameLabel(int column, std::string label) |
| 753 | { |