Changeset 79249 in vbox for trunk/src/VBox
- Timestamp:
- Jun 19, 2019 5:58:40 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/softkeyboard/UISoftKeyboard.cpp
r79248 r79249 1676 1676 QDir fileToDelete; 1677 1677 QString strFilePath(m_pCurrentKeyboardLayout->sourceFilePath()); 1678 bool fFileExists = fileToDelete.exists(strFilePath); 1678 bool fFileExists = false; 1679 if (!strFilePath.isEmpty()) 1680 fFileExists = fileToDelete.exists(strFilePath); 1679 1681 1680 1682 if (fFileExists)
Note:
See TracChangeset
for help on using the changeset viewer.