Changeset 20188 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 2, 2009 12:49:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r19670 r20188 81 81 "package first. This package keeps track of Linux kernel changes and " 82 82 "recompiles the vboxdrv kernel module if necessary." 83 ); 84 85 QString g_QStrHinOtherWrongDriverVersion = QApplication::tr( 86 "The VirtualBox kernel modules do not fit to this version of " 87 "VirtualBox. The installation of VirtualBox was apparently not " 88 "successful. It may help to completely uninstall and re-install " 89 "VirtualBox." 90 ); 91 92 QString g_QStrHintLinuxWrongDriverVersion = QApplication::tr( 93 "The VirtualBox kernel modules do not fit to this version of " 94 "VirtualBox. The installation of VirtualBox was apparently not " 95 "successful. Executing<br/><br/>" 96 " <font color=blue>'/etc/init.d/vboxdrv setup'</font><br/><br/>" 97 "should fix that problem. Make sure that you don't mix the " 98 "OSE version and the PUEL version of VirtualBox." 83 99 ); 84 100 … … 550 566 msgText += QApplication::tr ("Kernel driver not accessible"); 551 567 break; 568 case VERR_VM_DRIVER_VERSION_MISMATCH: 569 # ifdef RT_OS_LINUX 570 msgText += g_QStrHintLinuxWrongDriverVersion; 571 # else 572 msgText += g_QStrHintOtherWrongDriverVersion; 573 # endif 574 break; 552 575 default: 553 576 msgText += QApplication::tr ( … … 616 639 else 617 640 # endif 641 if (rc == VERR_VM_DRIVER_VERSION_MISMATCH) 642 msgText += g_QStrHintWrongDriverVersion; 643 else 618 644 msgText += g_QStrHintReinstall; 619 645 break;
Note:
See TracChangeset
for help on using the changeset viewer.