if ( pref.isEmpty() && lang != "en" ) {
// load Qt resources
QString qt_translations = QLibraryInfo::location( QLibraryInfo::TranslationsPath );
- QString qt_dir_trpath;
- if ( ::getenv( "QTDIR" ) )
- qt_dir_trpath = QString( ::getenv( "QTDIR" ) );
+ QString qt_dir_trpath = qgetenv( "QT_ROOT_DIR" );
+ if ( qt_dir_trpath.isEmpty() )
+ qt_dir_trpath = qgetenv( "QTDIR" );
if ( !qt_dir_trpath.isEmpty() )
qt_dir_trpath = QDir( qt_dir_trpath ).absoluteFilePath( "translations" );
}
// add $QTDIR/plugins to the pluins search path for image plugins
- QString qtdir( ::getenv( "QTDIR" ) );
+ QString qtdir = qgetenv( "QT_ROOT_DIR" );
+ if ( qtdir.isEmpty() )
+ qtdir = qgetenv( "QTDIR" );
if ( !qtdir.isEmpty() )
QApplication::addLibraryPath( QDir( qtdir ).absoluteFilePath( "plugins" ) );
}
// add $QTDIR/plugins to the pluins search path for image plugins
- QString qtdir( ::getenv( "QTDIR" ) );
+ QString qtdir = qgetenv( "QT_ROOT_DIR" );
+ if ( qtdir.isEmpty() )
+ qtdir = qgetenv( "QTDIR" );
if ( !qtdir.isEmpty() )
QApplication::addLibraryPath( QDir( qtdir ).absoluteFilePath( "plugins" ) );