Changeset 75250 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 5, 2018 3:15:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIGuestControlFileManagerLogPanel.cpp
r75224 r75250 25 25 # include <QSpinBox> 26 26 # include <QTextEdit> 27 # include <QTime> 27 28 28 29 /* GUI includes: */ … … 64 65 :QTextEdit(pParent) 65 66 { 67 setUndoRedoEnabled(false); 66 68 } 67 69 … … 98 100 if (!m_pLogTextEdit) 99 101 return; 100 m_pLogTextEdit->append( strLog);102 m_pLogTextEdit->append(QString("%1: %2").arg(QTime::currentTime().toString("hh:mm:ss")).arg(strLog)); 101 103 } 102 104 … … 115 117 mainLayout()->addWidget(m_pLogTextEdit); 116 118 } 117 118 119 } 119 120
Note:
See TracChangeset
for help on using the changeset viewer.