Changeset 88608 in vbox
- Timestamp:
- Apr 20, 2021 4:00:03 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/testcase/tstClipboardQt/tstClipboardQt.cpp
r88603 r88608 18 18 #include <QApplication> 19 19 #include <QMainWindow> 20 #include <Q Label>20 #include <QTextEdit> 21 21 #include <QHBoxLayout> 22 22 int main(int argc, char *argv[]) … … 28 28 QHBoxLayout *pLayout = new QHBoxLayout(pWidget); 29 29 30 QLabel *pLabel = new QLabel; 31 pLabel->setText("Label is here"); 32 pLayout->addWidget(pLabel); 30 QTextEdit *pTextEdit = new QTextEdit; 31 pLayout->addWidget(pTextEdit); 33 32 34 33
Note:
See TracChangeset
for help on using the changeset viewer.