- Timestamp:
- Oct 12, 2007 6:22:25 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25267
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r5094 r5273 1732 1732 // - add common buttons like Retry/Save/PowerOff/whatever 1733 1733 1734 QCString autoConfimId = "showRuntimeError."; 1735 1734 1736 CConsole console = aConsole; 1735 1737 CEnums::MachineState state = console.GetState(); … … 1745 1747 type = Critical; 1746 1748 severity = tr ("<nobr>Fatal Error</nobr>", "runtime error info"); 1749 autoConfimId += "fatal."; 1747 1750 } 1748 1751 else if (state == CEnums::Paused) … … 1750 1753 type = Error; 1751 1754 severity = tr ("<nobr>Non-Fatal Error</nobr>", "runtime error info"); 1755 autoConfimId += "error."; 1752 1756 } 1753 1757 else … … 1755 1759 type = Warning; 1756 1760 severity = tr ("<nobr>Warning</nobr>", "runtime error info"); 1757 } 1761 autoConfimId += "warning."; 1762 } 1763 1764 autoConfimId += errorID.utf8(); 1758 1765 1759 1766 QString formatted; … … 1789 1796 "use the clipboard to copy the following error message for " 1790 1797 "further examination:</p>"), 1791 formatted );1798 formatted, autoConfimId.data()); 1792 1799 1793 1800 /* always power down after a fatal error */ … … 1801 1808 "the described error and resume the virtual machine " 1802 1809 "execution.</p>"), 1803 formatted );1810 formatted, autoConfimId.data()); 1804 1811 } 1805 1812 else … … 1811 1818 "an appropriate action to make sure the described error will " 1812 1819 "not happen.</p>"), 1813 formatted );1814 } 1815 1816 NOREF (rc);1820 formatted, autoConfimId.data()); 1821 } 1822 1823 NOREF (rc); 1817 1824 } 1818 1825
Note:
See TracChangeset
for help on using the changeset viewer.