| 714 | #endif |
| 715 | |
| 716 | void |
| 717 | Action::sync_qaction () |
| 718 | { |
| 719 | #if defined(HAVE_QT) |
| 720 | if (mp_action) { |
| 721 | mp_action->setVisible (is_effective_visible ()); |
| 722 | mp_action->setShortcut (get_key_sequence ()); |
| 723 | mp_action->setEnabled (is_effective_enabled ()); |
| 724 | } |
| 725 | #endif |
| 726 | } |
| 727 | |
| 728 | #if defined(HAVE_QT) |
| 729 | void |
no test coverage detected