Changeset 17715 in vbox
- Timestamp:
- Mar 11, 2009 5:36:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFilePathSelectorWidget.cpp
r17714 r17715 389 389 { 390 390 path = VBoxGlobal::getSaveFileName (initDir, mFileFilters, parentWidget(), mFileDialogTitle); 391 if ( QFileInfo (path).suffix().isEmpty())391 if (!path.isEmpty() && QFileInfo (path).suffix().isEmpty()) 392 392 path = QString ("%1.%2").arg (path).arg (mDefaultSaveExt); 393 393 break;
Note:
See TracChangeset
for help on using the changeset viewer.