Changeset 102478 in vbox
- Timestamp:
- Dec 5, 2023 1:59:06 PM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 160621
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QISplitter.cpp
r101561 r102478 238 238 *********************************************************************************************************************************/ 239 239 240 QISplitter::QISplitter(Q Widget *pParent /* = 0 */)241 : QSplitter( pParent)240 QISplitter::QISplitter(Qt::Orientation enmOrientation /* = Qt::Horizontal */, QWidget *pParent /* = 0 */) 241 : QSplitter(enmOrientation, pParent) 242 242 , m_enmType(Shade) 243 243 , m_fPolished(false) … … 249 249 } 250 250 251 QISplitter::QISplitter( Qt::Orientation enmOrientation, Type enmType, QWidget *pParent /* = 0 */)251 QISplitter::QISplitter(Type enmType, Qt::Orientation enmOrientation /* = Qt::Horizontal */, QWidget *pParent /* = 0 */) 252 252 : QSplitter(enmOrientation, pParent) 253 253 , m_enmType(enmType) -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QISplitter.h
r98103 r102478 51 51 enum Type { Flat, Shade, Native }; 52 52 53 /** Constructs splitter passing @a pParent to the base-class. */54 QISplitter(Q Widget *pParent = 0);53 /** Constructs splitter passing @a enmOrientation and @a pParent to the base-class. */ 54 QISplitter(Qt::Orientation enmOrientation = Qt::Horizontal, QWidget *pParent = 0); 55 55 /** Constructs splitter passing @a enmOrientation and @a pParent to the base-class. 56 56 * @param enmType Brings the splitter handle type. */ 57 QISplitter( Qt::Orientation enmOrientation, Type enmType, QWidget *pParent = 0);57 QISplitter(Type enmType, Qt::Orientation enmOrientation = Qt::Horizontal, QWidget *pParent = 0); 58 58 59 59 /** Configure custom color defined as @a color. */ -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r102422 r102478 652 652 653 653 /* Create splitter: */ 654 m_pSplitter = new QISplitter(Q t::Horizontal, QISplitter::Flat);654 m_pSplitter = new QISplitter(QISplitter::Flat); 655 655 if (m_pSplitter) 656 656 { -
trunk/src/VBox/Frontends/VirtualBox/src/settings/editors/UIStorageSettingsEditor.cpp
r101868 r102478 4388 4388 4389 4389 /* Create splitter: */ 4390 m_pSplitter = new QISplitter (this);4390 m_pSplitter = new QISplitter; 4391 4391 if (m_pSplitter) 4392 4392 {
Note:
See TracChangeset
for help on using the changeset viewer.