Changeset 3867 in vbox for trunk/src/VBox
- Timestamp:
- Jul 26, 2007 11:55:50 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23227
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp ¶
r3820 r3867 70 70 #include <VBox/err.h> 71 71 #endif 72 73 #include <iprt/param.h> 74 #include <iprt/path.h> 72 75 73 76 /** class VBoxUSBLedTip … … 2298 2301 QString src2 = qApp->applicationDirPath() + "/../../release/bin/additions/VBoxGuestAdditions.iso"; 2299 2302 #else 2300 QString src1 = qApp->applicationDirPath() + "/VBoxGuestAdditions.iso"; 2303 char szAppPrivPath[RTPATH_MAX]; 2304 int rc; 2305 2306 rc = RTPathAppPrivateNoArch(szAppPrivPath, sizeof(szAppPrivPath)); 2307 Assert(RT_SUCCESS(rc)); 2308 2309 QString src1 = QString(szAppPrivPath) + "/VBoxGuestAdditions.iso"; 2301 2310 QString src2 = qApp->applicationDirPath() + "/additions/VBoxGuestAdditions.iso"; 2302 2311 #endif -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp ¶
r3865 r3867 2005 2005 int rc; 2006 2006 2007 RTPathAppPrivateNoArch(szNlsPath, sizeof(szNlsPath));2007 rc = RTPathAppPrivateNoArch(szNlsPath, sizeof(szNlsPath)); 2008 2008 Assert(RT_SUCCESS(rc)); 2009 2009 -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp ¶
r3861 r3867 1766 1766 int rc; 1767 1767 1768 RTPathAppDocs(szDocsPath, sizeof(szDocsPath));1768 rc = RTPathAppDocs(szDocsPath, sizeof(szDocsPath)); 1769 1769 Assert(RT_SUCCESS(rc)); 1770 1770
Note:
See TracChangeset
for help on using the changeset viewer.