Changeset 6458 for trunk/qt-gui
- Timestamp:
- 07/20/08 23:04:48 (4 months ago)
- Files:
-
- 1 modified
-
trunk/qt-gui/src/optionsdlg.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt-gui/src/optionsdlg.cpp
r6381 r6458 931 931 l->addWidget(boxFont); 932 932 933 l->addStretch(1); 934 933 935 return w; 934 936 } … … 1028 1030 1029 1031 QGroupBox *boxAcceptEvents = new QGroupBox(4, Vertical, tr("Accept Modes"), w); 1030 lay->addWidget(boxAcceptEvents , 1);1032 lay->addWidget(boxAcceptEvents); 1031 1033 1032 1034 chkOEAway = new QCheckBox(tr("OnEvent in Away"), boxAcceptEvents); … … 1043 1045 1044 1046 slot_chkOnEventsToggled(chkOnEvents->isChecked()); 1047 1048 lay->addStretch(1); 1045 1049 1046 1050 return w; … … 1571 1575 { 1572 1576 QWidget* w = new QWidget(this); 1573 QBoxLayout* lay = new QHBoxLayout(w, 8, 4); 1577 QVBoxLayout* l = new QVBoxLayout(w, 8, 4); 1578 QBoxLayout* lay = new QHBoxLayout(); 1574 1579 1575 1580 QVBox* boxRight = new QVBox(w); … … 1705 1710 lay->activate(); 1706 1711 1712 l->addLayout(lay); 1713 l->addStretch(1); 1714 1707 1715 return w; 1708 1716 }
