| 867 | } |
| 868 | |
| 869 | void |
| 870 | Action::set_title (const std::string &t) |
| 871 | { |
| 872 | #if defined(HAVE_QT) |
| 873 | if (qaction ()) { |
| 874 | qaction ()->setText (tl::to_qstring (t)); |
| 875 | } |
| 876 | #endif |
| 877 | m_title = t; |
| 878 | } |
| 879 | |
| 880 | std::string |
| 881 | Action::get_title () const |
no test coverage detected