diff options
| -rw-r--r-- | TODO | 2 | ||||
| -rw-r--r-- | src/cookies.ui | 54 | 
2 files changed, 31 insertions, 25 deletions
@@ -16,7 +16,7 @@ To 0.0.4  1. check the lines above...  2. Improve docs  DONE. Let rekonq be a Singleton app. (And work well..) -4. fix bookmarks toolbar POSITION +DONE. fix bookmarks toolbar POSITION  5. fix bookmarks action menu (in toolbar)  DONE. fix load at startup  DONE. fix FONTS problems between webkit && KDE settings (at least, here..) diff --git a/src/cookies.ui b/src/cookies.ui index 384b31b0..49ad3a96 100644 --- a/src/cookies.ui +++ b/src/cookies.ui @@ -1,7 +1,8 @@ -<ui version="4.0" > +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0">   <class>CookiesDialog</class> - <widget class="QDialog" name="CookiesDialog" > -  <property name="geometry" > + <widget class="QDialog" name="CookiesDialog"> +  <property name="geometry">     <rect>      <x>0</x>      <y>0</y> @@ -9,16 +10,16 @@      <height>370</height>     </rect>    </property> -  <property name="windowTitle" > +  <property name="windowTitle">     <string>Cookies</string>    </property> -  <layout class="QGridLayout" > -   <item row="0" column="0" > +  <layout class="QGridLayout"> +   <item row="0" column="0">      <spacer> -     <property name="orientation" > +     <property name="orientation">        <enum>Qt::Horizontal</enum>       </property> -     <property name="sizeHint" stdset="0" > +     <property name="sizeHint" stdset="0">        <size>         <width>252</width>         <height>20</height> @@ -26,34 +27,34 @@       </property>      </spacer>     </item> -   <item row="0" column="1" > -    <widget class="KLineEdit" name="search" /> +   <item row="0" column="1"> +    <widget class="KLineEdit" name="search"/>     </item> -   <item row="1" column="0" colspan="2" > -    <widget class="EditTableView" name="cookiesTable" /> +   <item row="1" column="0" colspan="2"> +    <widget class="EditTableView" name="cookiesTable"/>     </item> -   <item row="2" column="0" colspan="2" > -    <layout class="QHBoxLayout" > +   <item row="2" column="0" colspan="2"> +    <layout class="QHBoxLayout">       <item> -      <widget class="QPushButton" name="removeButton" > -       <property name="text" > +      <widget class="QPushButton" name="removeButton"> +       <property name="text">          <string>&Remove</string>         </property>        </widget>       </item>       <item> -      <widget class="QPushButton" name="removeAllButton" > -       <property name="text" > +      <widget class="QPushButton" name="removeAllButton"> +       <property name="text">          <string>Remove &All Cookies</string>         </property>        </widget>       </item>       <item>        <spacer> -       <property name="orientation" > +       <property name="orientation">          <enum>Qt::Horizontal</enum>         </property> -       <property name="sizeHint" stdset="0" > +       <property name="sizeHint" stdset="0">          <size>           <width>40</width>           <height>20</height> @@ -62,8 +63,8 @@        </spacer>       </item>       <item> -      <widget class="QDialogButtonBox" name="buttonBox" > -       <property name="standardButtons" > +      <widget class="QDialogButtonBox" name="buttonBox"> +       <property name="standardButtons">          <set>QDialogButtonBox::Ok</set>         </property>        </widget> @@ -74,6 +75,11 @@   </widget>   <customwidgets>    <customwidget> +   <class>KLineEdit</class> +   <extends>QLineEdit</extends> +   <header>klineedit.h</header> +  </customwidget> +  <customwidget>     <class>EditTableView</class>     <extends>QTableView</extends>     <header>edittableview.h</header> @@ -87,11 +93,11 @@     <receiver>CookiesDialog</receiver>     <slot>accept()</slot>     <hints> -    <hint type="sourcelabel" > +    <hint type="sourcelabel">       <x>472</x>       <y>329</y>      </hint> -    <hint type="destinationlabel" > +    <hint type="destinationlabel">       <x>461</x>       <y>356</y>      </hint>  | 
