Skip to content

Commit

Permalink
Fix 'spacer' is not a widget warning.
Browse files Browse the repository at this point in the history
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.
64 changes: 26 additions & 38 deletions src/passwordlayout.ui
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>&amp;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 &amp;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 &amp;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>

0 comments on commit eea36ad

Please sign in to comment.