| 1812 | } |
| 1813 | |
| 1814 | void UIWindow::executeKeyBindingCommand( const std::string& command ) { |
| 1815 | auto cmdIt = mKeyBindingCommands.find( command ); |
| 1816 | if ( cmdIt != mKeyBindingCommands.end() ) { |
| 1817 | cmdIt->second(); |
| 1818 | } |
| 1819 | } |
| 1820 | |
| 1821 | void UIWindow::sendWindowToFront() { |
| 1822 | toFront(); |
no test coverage detected