| 15 | namespace Heaptrack |
| 16 | { |
| 17 | QString findExecutable(const QString& fallbackExecutablePath) |
| 18 | { |
| 19 | QString executablePath = QStandardPaths::findExecutable(fallbackExecutablePath); |
| 20 | return executablePath.isEmpty() ? fallbackExecutablePath : executablePath; |
| 21 | } |
| 22 | |
| 23 | QWidget* activeMainWindow() |
| 24 | { |