37 return QDesktopServices::openUrl(url);
40 auto systemEnv = QProcessEnvironment::systemEnvironment();
41 auto ldpreload = systemEnv.value(LDPRELOAD_ENV, QString());
42 if (!ldpreload.isEmpty()) {
43 unsetenv(LDPRELOAD_ENV);
45 auto status = QDesktopServices::openUrl(url);
46 if (!ldpreload.isEmpty()) {
47 setenv(LDPRELOAD_ENV, qPrintable(ldpreload), 1 );