- Timestamp:
- Apr 19, 2018 1:14:59 PM (7 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r71921 r71922 558 558 src/widgets/UIEmptyFilePathSelector.h \ 559 559 src/widgets/UILineTextEdit.h \ 560 src/widgets/UIMediumSizeEditor.h \561 560 src/widgets/UIMenuBar.h \ 562 561 src/widgets/UIPortForwardingTable.h \ … … 686 685 src/widgets/UIHostComboEditor.h \ 687 686 src/widgets/UIHotKeyEditor.h \ 687 src/widgets/UIMediumSizeEditor.h \ 688 688 src/widgets/UIPopupBox.h \ 689 689 src/widgets/UIPopupPane.h \ … … 778 778 src/widgets/UIHostComboEditor.h \ 779 779 src/widgets/UIHotKeyEditor.h \ 780 src/widgets/UIMediumSizeEditor.h \ 780 781 src/widgets/UIPopupBox.h \ 781 782 src/widgets/UIPopupPane.h \ … … 1048 1049 src/widgets/UIEmptyFilePathSelector.cpp \ 1049 1050 src/widgets/UILineTextEdit.cpp \ 1050 src/widgets/UIMediumSizeEditor.cpp \1051 1051 src/widgets/UIMenuBar.cpp \ 1052 1052 src/widgets/UIPortForwardingTable.cpp \ … … 1216 1216 src/widgets/UIHostComboEditor.cpp \ 1217 1217 src/widgets/UIHotKeyEditor.cpp \ 1218 src/widgets/UIMediumSizeEditor.cpp \ 1218 1219 src/widgets/UIPopupBox.cpp \ 1219 1220 src/widgets/UIPopupPane.cpp \ … … 1334 1335 src/widgets/UIHostComboEditor.cpp \ 1335 1336 src/widgets/UIHotKeyEditor.cpp \ 1337 src/widgets/UIMediumSizeEditor.cpp \ 1336 1338 src/widgets/UIPopupBox.cpp \ 1337 1339 src/widgets/UIPopupPane.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMediumSizeEditor.cpp
r71027 r71922 5 5 6 6 /* 7 * Copyright (C) 2006-201 7Oracle Corporation7 * Copyright (C) 2006-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 28 28 /* GUI includes: */ 29 29 # include "QILineEdit.h" 30 # include "VBoxGlobal.h" 30 31 # include "UIMediumSizeEditor.h" 31 # include "VBoxGlobal.h"32 32 33 33 /* COM includes: */ … … 114 114 /* Create layout: */ 115 115 QGridLayout *pLayout = new QGridLayout(this); 116 AssertPtrReturnVoid(pLayout);116 if (pLayout) 117 117 { 118 118 /* Configure layout: */ … … 124 124 /* Create size slider: */ 125 125 m_pSlider = new QSlider; 126 AssertPtrReturnVoid(m_pSlider);126 if (m_pSlider) 127 127 { 128 128 /* Configure slider: */ … … 145 145 /* Create minimum size label: */ 146 146 m_pLabelMinSize = new QLabel; 147 AssertPtrReturnVoid(m_pLabelMinSize);147 if (m_pLabelMinSize) 148 148 { 149 149 /* Configure label: */ … … 156 156 /* Create maximum size label: */ 157 157 m_pLabelMaxSize = new QLabel; 158 AssertPtrReturnVoid(m_pLabelMaxSize);158 if (m_pLabelMaxSize) 159 159 { 160 160 /* Configure label: */ … … 167 167 /* Create size editor: */ 168 168 m_pEditor = new QILineEdit; 169 AssertPtrReturnVoid(m_pEditor);169 if (m_pEditor) 170 170 { 171 171 /* Configure editor: */ … … 266 266 m_pEditor->setToolTip(strToolTip); 267 267 } 268 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIMediumSizeEditor.h
r71027 r71922 5 5 6 6 /* 7 * Copyright (C) 2006-201 7Oracle Corporation7 * Copyright (C) 2006-2018 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 24 24 /* GUI includes: */ 25 25 #include "QIWithRetranslateUI.h" 26 #include "UILibraryDefs.h" 26 27 27 28 /* Forward declarations: */ 28 29 class QLabel; 29 30 class QSlider; 31 class QString; 32 class QWidget; 30 33 class QILineEdit; 31 34 32 33 35 /** Medium size editor widget. */ 34 class UIMediumSizeEditor : public QIWithRetranslateUI<QWidget>36 class SHARED_LIBRARY_STUFF UIMediumSizeEditor : public QIWithRetranslateUI<QWidget> 35 37 { 36 38 Q_OBJECT; … … 99 101 100 102 #endif /* !___UIMediumSizeEditor_h___ */ 101
Note:
See TracChangeset
for help on using the changeset viewer.