Changeset 11707
- Timestamp:
- 08/27/08 17:01:05 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r11702 r11707 3528 3528 3529 3529 /* Here is workaround for Qt4.3 bug with QFileDialog which crushes when 3530 * gets initial path as hidden directory if no hidden files are shown. */ 3530 * gets initial path as hidden directory if no hidden files are shown. 3531 * See http://trolltech.com/developer/task-tracker/index_html?method=entry&id=193483 3532 * for details */ 3531 3533 QFileDialog dlg (aParent); 3532 3534 dlg.setWindowTitle (aCaption); … … 3704 3706 3705 3707 /* Here is workaround for Qt4.3 bug with QFileDialog which crushes when 3706 * gets initial path as hidden directory if no hidden files are shown. */ 3708 * gets initial path as hidden directory if no hidden files are shown. 3709 * See http://trolltech.com/developer/task-tracker/index_html?method=entry&id=193483 3710 * for details */ 3707 3711 QFileDialog dlg (aParent); 3708 3712 dlg.setWindowTitle (aCaption); trunk/src/VBox/Frontends/VirtualBox4/src/main.cpp
r11695 r11707 124 124 } 125 125 126 #include <QWindowsStyle> 126 127 int main (int argc, char **argv) 127 128 { … … 176 177 /* Qt4.3 version has the QProcess bug which freezing the application 177 178 * for 30 seconds. This bug is internally used at initialization of 178 * Cleanlooks style. So we have to change this style to another one. */ 179 * Cleanlooks style. So we have to change this style to another one. 180 * See http://trolltech.com/developer/task-tracker/index_html?id=179200&method=entry 181 * for details. */ 179 182 if (QString (qVersion()).startsWith ("4.3") && 180 183 qobject_cast <QCleanlooksStyle*> (QApplication::style()))

