| 1117 | */ |
| 1118 | |
| 1119 | QString KUndo2QStack::redoText() const |
| 1120 | { |
| 1121 | if (!m_macro_stack.isEmpty()) |
| 1122 | return QString(); |
| 1123 | if (m_index < m_command_list.size()) |
| 1124 | return m_command_list.at(m_index)->actionText(); |
| 1125 | return QString(); |
| 1126 | } |
| 1127 | |
| 1128 | #ifndef QT_NO_ACTION |
| 1129 |
nothing calls this directly
no test coverage detected