Changeset 57832 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Sep 18, 2015 7:27:02 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 102782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/UIVMLogViewer.cpp
r57591 r57832 470 470 471 471 const CSystemProperties &sys = vboxGlobal().virtualBox().GetSystemProperties(); 472 int cMaxLogs = sys.GetLogHistoryCount();473 for ( int i=0; i <=cMaxLogs; ++i)472 unsigned cMaxLogs = sys.GetLogHistoryCount() + 1 /*VBox.log*/ + 1 /*VBoxHardening.log*/; /** @todo Add api for getting total possible log count! */ 473 for (unsigned i = 0; i < cMaxLogs; ++i) 474 474 { 475 475 /* Query the log file name for index i: */
Note:
See TracChangeset
for help on using the changeset viewer.