- Timestamp:
- Mar 24, 2009 3:46:21 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44917
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxProblemReporter.cpp
r18132 r18199 1863 1863 bool aAfterRefresh) 1864 1864 { 1865 /* The aAfterRefresh parameter says if an item which was inaccessible is 1866 become accessible after a refresh. For the time beeing we present the 1867 old message dialog. This case should be rather unlikly. */ 1865 1868 if (!aAfterRefresh) 1866 1869 { 1870 int rc = message (mainWindowShown(), Info, 1871 tr ("<p>Your existing VirtualBox settings files will be automatically " 1872 "converted from the old format to a new format necessary for the " 1873 "new version of VirtualBox.</p>" 1874 "<p>Press <b>OK</b> to start VirtualBox now or press <b>Exit</b> if " 1875 "you want to terminate the VirtualBox " 1876 "application without any further actions.</p>"), 1877 NULL /* aAutoConfirmId */, 1878 QIMessageBox::Ok | QIMessageBox::Default, 1879 QIMessageBox::Cancel | QIMessageBox::Escape, 1880 0, 1881 0, 1882 tr ("E&xit", "warnAboutAutoConvertedSettings message box")); 1883 1884 if (rc == QIMessageBox::Cancel) 1885 return QIMessageBox::Cancel; 1886 1887 /* We backup in any case */ 1888 return QIMessageBox::No; 1889 1890 #if 0 1867 1891 int rc = message (mainWindowShown(), Info, 1868 1892 tr ("<p>Your existing VirtualBox settings files were automatically " … … 1889 1913 if (rc == QIMessageBox::Cancel) 1890 1914 return QIMessageBox::Cancel; 1915 #endif 1891 1916 } 1892 1917
Note:
See TracChangeset
for help on using the changeset viewer.