- Timestamp:
- Dec 5, 2014 9:52:08 AM (10 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extradata/UIExtraDataManager.cpp
r53449 r53450 953 953 954 954 /* Compose initial file-name: */ 955 const QString strInitialFileName = QDir(vboxGlobal(). HomeFolder()).absoluteFilePath(QString("%1_ExtraData.xml").arg(currentChooserName()));955 const QString strInitialFileName = QDir(vboxGlobal().homeFolder()).absoluteFilePath(QString("%1_ExtraData.xml").arg(currentChooserName())); 956 956 /* Open file-save dialog to choose file to save extra-data into: */ 957 957 const QString strFileName = QIFileDialog::getSaveFileName(strInitialFileName, "XML files (*.xml)", this, … … 1040 1040 1041 1041 /* Compose initial file-name: */ 1042 const QString strInitialFileName = QDir(vboxGlobal(). HomeFolder()).absoluteFilePath(QString("%1_ExtraData.xml").arg(currentChooserName()));1042 const QString strInitialFileName = QDir(vboxGlobal().homeFolder()).absoluteFilePath(QString("%1_ExtraData.xml").arg(currentChooserName())); 1043 1043 /* Open file-open dialog to choose file to open extra-data into: */ 1044 1044 const QString strFileName = QIFileDialog::getOpenFileName(strInitialFileName, "XML files (*.xml)", this, -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r53449 r53450 2523 2523 QString strUserManualFileName1 = vboxGlobal().helpFile(); 2524 2524 QString strShortFileName = QFileInfo(strUserManualFileName1).fileName(); 2525 QString strUserManualFileName2 = QDir(vboxGlobal(). HomeFolder()).absoluteFilePath(strShortFileName);2525 QString strUserManualFileName2 = QDir(vboxGlobal().homeFolder()).absoluteFilePath(strShortFileName); 2526 2526 /* Show if user manual already present: */ 2527 2527 if (QFile::exists(strUserManualFileName1))
Note:
See TracChangeset
for help on using the changeset viewer.