! * \brief findUserHomePath * If the passed path name is not empty it will be returned, otherwise * the user home path of the system will be returned. */
| 3421 | * the user home path of the system will be returned. |
| 3422 | */ |
| 3423 | QString findUserHomePath(const QString& userHome) |
| 3424 | { |
| 3425 | return userHome.isEmpty() ? getUserHome() : userHome; |
| 3426 | } |
| 3427 | |
| 3428 | /*! |
| 3429 | * \brief findPath |
no test coverage detected