- Timestamp:
- Nov 28, 2014 3:05:44 PM (10 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElements.cpp
r52733 r53412 542 542 const QString strAnchorType = deviceType == KDeviceType_DVD || deviceType == KDeviceType_Floppy ? QString("mount") : 543 543 deviceType == KDeviceType_HardDisk ? QString("attach") : QString(); 544 const CMedium medium = attachment.GetMedium(); 545 const QString strMediumLocation = medium.isNull() ? QString() : medium.GetLocation(); 544 546 attachmentsMap.insert(attachmentSlot, 545 QString("<a href=#%1,%2,%3 >%4</a>")547 QString("<a href=#%1,%2,%3,%4>%5</a>") 546 548 .arg(strAnchorType, 547 549 controller.GetName(), 548 550 gpConverter->toString(attachmentSlot), 551 strMediumLocation, 549 552 strDeviceType + strAttachmentInfo)); 550 553 } -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsTextPane.cpp
r52733 r53412 314 314 /* Update text-layout: */ 315 315 updateTextLayout(); 316 317 /* Update tool-tip: */ 318 setToolTip(m_strHoveredAnchor.section(',', -1)); 316 319 317 320 /* Update text-pane: */
Note:
See TracChangeset
for help on using the changeset viewer.