Changeset 3861 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 26, 2007 9:15:14 AM (18 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r3859 r3861 64 64 #define BOOL PRBool 65 65 #endif 66 67 #include <iprt/param.h> 68 #include <iprt/path.h> 66 69 67 70 #if defined (VBOX_GUI_DEBUG) … … 1998 2001 QString selectedLangId = gVBoxBuiltInLangName; 1999 2002 2000 QString nlsPath = qApp->applicationDirPath() + gVBoxLangSubDir; 2003 char szNlsPath[RTPATH_MAX]; 2004 int rc; 2005 2006 RTPathAppPrivateNoArch(szNlsPath, sizeof(szNlsPath)); 2007 Assert(RT_SUCCESS(rc)); 2008 2009 QString nlsPath = QString(szNlsPath) + gVBoxLangSubDir; 2001 2010 QDir nlsDir (nlsPath); 2002 2011 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r3828 r3861 40 40 41 41 #include <iprt/err.h> 42 #include <iprt/param.h> 43 #include <iprt/path.h> 42 44 43 45 #if defined (Q_WS_WIN32) … … 1761 1763 HH_DISPLAY_TOPIC, NULL); 1762 1764 #elif defined (Q_WS_X11) 1763 QString fullProgPath = qApp->applicationDirPath(); 1765 char szDocsPath[RTPATH_MAX]; 1766 int rc; 1767 1768 RTPathAppDocs(szDocsPath, sizeof(szDocsPath)); 1769 Assert(RT_SUCCESS(rc)); 1770 1771 QString fullProgPath = QString(szDocsPath); 1764 1772 QProcess kchmViewer (fullProgPath + "/kchmviewer"); 1765 1773 kchmViewer.addArgument (fullProgPath + "/VirtualBox.chm");
Note:
See TracChangeset
for help on using the changeset viewer.