Changeset 4484 in vbox
- Timestamp:
- Sep 3, 2007 8:48:37 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxGlobalSettingsDlg.ui.h
r4364 r4484 26 26 *****************************************************************************/ 27 27 28 #include <iprt/param.h> 29 #include <iprt/path.h> 28 30 29 31 /* defined in VBoxGlobal.cpp */ … … 393 395 lvLanguages->header()->hide(); 394 396 lvLanguages->setSorting (0); 395 QString nlsPath = qApp->applicationDirPath() + gVBoxLangSubDir; 397 398 char szNlsPath[RTPATH_MAX]; 399 int rc = RTPathAppPrivateNoArch(szNlsPath, sizeof(szNlsPath)); 400 Assert(RT_SUCCESS(rc)); 401 QString nlsPath = QString(szNlsPath) + gVBoxLangSubDir; 396 402 QDir nlsDir (nlsPath); 397 403 QStringList files = nlsDir.entryList (QString ("%1*%2")
Note:
See TracChangeset
for help on using the changeset viewer.