Changeset 5592 in vbox for trunk/src/VBox/Frontends/VirtualBox/ui/VBoxRegistrationDlg.ui.h
- Timestamp:
- Oct 31, 2007 10:07:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxRegistrationDlg.ui.h
r5579 r5592 28 28 ** destructor. 29 29 *****************************************************************************/ 30 31 #include <iprt/param.h> 32 #include <iprt/path.h> 30 33 31 34 /** … … 514 517 // TODO: add sys info for os2 if any... 515 518 #elif defined (Q_OS_LINUX) || defined (Q_OS_MACX) || defined (Q_OS_FREEBSD) || defined (Q_OS_SOLARIS) 519 char szAppPrivPath [RTPATH_MAX]; 520 int rc; 521 522 rc = RTPathAppPrivateNoArch (szAppPrivPath, sizeof (szAppPrivPath)); 523 Assert (RT_SUCCESS (rc)); 516 524 QProcess infoScript (QString ("./VBoxSysInfo.sh"), this, "infoScript"); 517 infoScript.setWorkingDirectory ( qApp->applicationDirPath());525 infoScript.setWorkingDirectory (QString (szAppPrivPath)); 518 526 if (infoScript.start()) 519 527 {
Note:
See TracChangeset
for help on using the changeset viewer.