Changeset 11118 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Aug 4, 2008 6:01:29 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34054
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxUtils.h
r10361 r11118 27 27 #include <QMouseEvent> 28 28 #include <QWidget> 29 #include <QTextEdit> 29 30 30 31 /** … … 90 91 }; 91 92 93 /** 94 * QTextEdit reimplementation to feat some extended requirements. 95 */ 96 class QRichTextEdit : public QTextEdit 97 { 98 Q_OBJECT; 99 100 public: 101 102 QRichTextEdit (QWidget *aParent) : QTextEdit (aParent) {} 103 104 void setViewportMargins (int aLeft, int aTop, int aRight, int aBottom) 105 { 106 QTextEdit::setViewportMargins (aLeft, aTop, aRight, aBottom); 107 } 108 }; 109 92 110 #ifdef Q_WS_MAC 93 111 # undef PAGE_SIZE
Note:
See TracChangeset
for help on using the changeset viewer.