Changeset 14701
- Timestamp:
- 11/27/08 14:06:35 (1 month ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r14692 r14701 1440 1440 bActive = vboxGlobal().settings().trayIconEnabled(); 1441 1441 1442 if ( bActive 1443 && (false == QSystemTrayIcon::isSystemTrayAvailable()) 1444 && (false == mVBox.GetExtraData (VBoxDefs::GUI_TrayIconWinID).isEmpty())) 1442 QString strTrayWinID = virtualBox().GetExtraData (VBoxDefs::GUI_TrayIconWinID); 1443 if ( (bActive == false) 1444 || (QSystemTrayIcon::isSystemTrayAvailable() == false) 1445 || (strTrayWinID.isEmpty() == false)) 1445 1446 { 1446 1447 return false; … … 1475 1476 if (RT_FAILURE (rc)) 1476 1477 { 1477 LogRel(("Failed to start systray window! rc=%Rrc\n", rc));1478 LogRel(("Failed to start systray window! Path=%s, rc=%Rrc\n", path, rc)); 1478 1479 return false; 1479 1480 }

