Changeset 17640 in vbox
- Timestamp:
- Mar 10, 2009 3:33:58 PM (16 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/QIMessageBox.cpp
r17630 r17640 532 532 void QIMessageBox::setDetailsText (const QString &aText) 533 533 { 534 QStringList parts (aText.split ("<!--EOM-->", QString:: SkipEmptyParts));535 mTextLabel->setText (mTextLabel->text() + parts [0]);536 if (parts.size() > 1 ) mDetailsText->setText (parts [1]);534 QStringList parts (aText.split ("<!--EOM-->", QString::KeepEmptyParts)); 535 if (!parts [0].isEmpty()) mTextLabel->setText (mTextLabel->text() + parts [0]); 536 if (parts.size() > 1 && !parts [1].isEmpty()) mDetailsText->setText (parts [1]); 537 537 } 538 538 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r17631 r17640 1979 1979 tr ("<li><b>Exit</b> to terminate VirtualBox without saving " 1980 1980 "the results of the conversion to disk.</li>")), 1981 aFileList,1981 QString ("<!--EOM-->%1").arg (aFileList), 1982 1982 NULL /* aAutoConfirmId */, 1983 1983 QIMessageBox::Yes,
Note:
See TracChangeset
for help on using the changeset viewer.