-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 'spacer' is not a widget warning.
At some point 'spacer' became 'VerticalSpacer' in designer, I guess. I just deleted the old one and added a new one in the exact same place.
- Loading branch information
Dr. Robert Marmorstein
committed
Mar 4, 2010
1 parent
5929cc2
commit eea36ad
Showing
1 changed file
with
26 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,83 @@ | ||
<ui version="4.0" > | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>PasswordLayout</class> | ||
<widget class="QWidget" name="PasswordLayout" > | ||
<property name="geometry" > | ||
<widget class="QWidget" name="PasswordLayout"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>377</width> | ||
<height>103</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle" > | ||
<property name="windowTitle"> | ||
<string>Password Protection</string> | ||
</property> | ||
<layout class="QVBoxLayout" > | ||
<layout class="QVBoxLayout"> | ||
<item> | ||
<widget class="QGroupBox" name="buttonGroup" > | ||
<property name="title" > | ||
<widget class="QGroupBox" name="buttonGroup"> | ||
<property name="title"> | ||
<string/> | ||
</property> | ||
<layout class="QVBoxLayout" > | ||
<property name="margin" > | ||
<layout class="QVBoxLayout"> | ||
<property name="margin"> | ||
<number>0</number> | ||
</property> | ||
<item> | ||
<widget class="QRadioButton" name="noPasswordRadioButton" > | ||
<property name="text" > | ||
<widget class="QRadioButton" name="noPasswordRadioButton"> | ||
<property name="text"> | ||
<string>&No protection</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QRadioButton" name="passwordRadioButton" > | ||
<property name="text" > | ||
<widget class="QRadioButton" name="passwordRadioButton"> | ||
<property name="text"> | ||
<string>Protect basket with a &password</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<layout class="QHBoxLayout" > | ||
<layout class="QHBoxLayout"> | ||
<item> | ||
<widget class="QRadioButton" name="publicPrivateRadioButton" > | ||
<property name="sizePolicy" > | ||
<sizepolicy vsizetype="Fixed" hsizetype="Fixed" > | ||
<widget class="QRadioButton" name="publicPrivateRadioButton"> | ||
<property name="sizePolicy"> | ||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed"> | ||
<horstretch>0</horstretch> | ||
<verstretch>0</verstretch> | ||
</sizepolicy> | ||
</property> | ||
<property name="text" > | ||
<property name="text"> | ||
<string>Protect basket with private &key:</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QComboBox" name="keyCombo" /> | ||
<widget class="QComboBox" name="keyCombo"/> | ||
</item> | ||
</layout> | ||
</item> | ||
</layout> | ||
<zorder>noPasswordRadioButton</zorder> | ||
<zorder>passwordRadioButton</zorder> | ||
<zorder>spacer</zorder> | ||
</widget> | ||
</item> | ||
<item> | ||
<spacer name="spacer" > | ||
<property name="orientation" > | ||
<spacer name="verticalSpacer"> | ||
<property name="orientation"> | ||
<enum>Qt::Vertical</enum> | ||
</property> | ||
<property name="sizeType" > | ||
<enum>QSizePolicy::Expanding</enum> | ||
</property> | ||
<property name="sizeHint" stdset="0" > | ||
<property name="sizeHint" stdset="0"> | ||
<size> | ||
<width>20</width> | ||
<height>6</height> | ||
<height>40</height> | ||
</size> | ||
</property> | ||
</spacer> | ||
</item> | ||
</layout> | ||
</widget> | ||
<layoutdefault spacing="0" margin="0" /> | ||
<layoutfunction spacing="KDialog::spacingHint" /> | ||
<layoutdefault spacing="0" margin="0"/> | ||
<layoutfunction spacing="KDialog::spacingHint"/> | ||
<pixmapfunction>qPixmapFromMimeSource</pixmapfunction> | ||
<customwidgets> | ||
<customwidget> | ||
<class>QGroupBox</class> | ||
<header>QGroupBox</header> | ||
<container>1</container> | ||
</customwidget> | ||
</customwidgets> | ||
<resources/> | ||
<connections/> | ||
</ui> |