| 687 | } |
| 688 | |
| 689 | void GlobalSearchController::toggleGlobalSearchBar() { |
| 690 | if ( mGlobalSearchBarLayout->isVisible() ) { |
| 691 | mGlobalSearchBarLayout->execute( "close-global-searchbar" ); |
| 692 | } else { |
| 693 | showGlobalSearch(); |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | void GlobalSearchController::updateGlobalSearchBarResults( |
| 698 | const std::string& search, std::shared_ptr<ProjectSearch::ResultModel> model, |
no test coverage detected