- Timestamp:
- Feb 12, 2016 11:13:32 AM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime/information
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationView.cpp
r59484 r59647 20 20 #else /* !VBOX_WITH_PRECOMPILED_HEADERS */ 21 21 22 # include <QClipboard> 23 # include <QDebug> 24 22 25 /* GUI includes: */ 23 26 # include "UIInformationView.h" 27 # include "UIInformationItem.h" 24 28 25 29 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ … … 28 32 : QListView(pParent) 29 33 { 30 prepare();31 34 } 32 35 33 void UIInformationView:: prepare()36 void UIInformationView::updateData(const QModelIndex & topLeft, const QModelIndex & bottomRight) 34 37 { 35 /* Prepare information-view: */ 36 setSpacing(2); 38 update(topLeft); 37 39 } 38 40 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIInformationView.h
r59484 r59647 21 21 /* Qt includes: */ 22 22 #include <QListView> 23 #include <QModelIndex> 23 24 24 25 /** QListView extension … … 32 33 UIInformationView(QWidget *pParent = 0); 33 34 34 p rivate:35 /** Prepares information-view. */36 void prepare(); 35 public slots: 36 void updateData(const QModelIndex & topLeft, const QModelIndex & bottomRight); 37 37 38 }; 38 39
Note:
See TracChangeset
for help on using the changeset viewer.