Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 64bc2c1ece402a3bf975c32d9e37c2a5 > files > 12

amarok-1.4.8-12mdv2008.1.src.rpm

--- amarok/src/Options8.ui	2008/03/14 19:57:44	785718
+++ amarok/src/Options8.ui	2008/03/14 19:57:48	785719
@@ -195,6 +195,9 @@
             <property name="name">
                 <cstring>groupBox2</cstring>
             </property>
+            <property name="enabled">
+                <bool>false</bool>
+            </property>
             <property name="title">
                 <string>last.fm Services</string>
             </property>
@@ -218,7 +221,7 @@
                         <cstring>kcfg_SubmitPlayedSongs</cstring>
                     </property>
                     <property name="enabled">
-                        <bool>true</bool>
+                        <bool>false</bool>
                     </property>
                     <property name="sizePolicy">
                         <sizepolicy>
@@ -231,11 +234,17 @@
                     <property name="text">
                         <string>Improve m&amp;y profile by submitting the tracks I play</string>
                     </property>
+                    <property name="accel">
+                        <string>Alt+Y</string>
+                    </property>
                 </widget>
                 <widget class="QCheckBox">
                     <property name="name">
                         <cstring>kcfg_RetrieveSimilarArtists</cstring>
                     </property>
+                    <property name="enabled">
+                        <bool>false</bool>
+                    </property>
                     <property name="text">
                         <string>&amp;Retrieve similar artists</string>
                     </property>
@@ -280,8 +289,6 @@
         </spacer>
     </vbox>
 </widget>
-<customwidgets>
-</customwidgets>
 <connections>
     <connection>
         <sender>kcfg_ScrobblerUsername</sender>
@@ -294,7 +301,7 @@
     <include location="local" impldecl="in implementation">Options8.ui.h</include>
 </includes>
 <slots>
-    <slot access="protected">updateServices(const QString &amp;)</slot>
+    <slot access="protected">updateServices( const QString &amp; s )</slot>
 </slots>
 <layoutdefaults spacing="6" margin="11"/>
 <includehints>
--- amarok/src/Options8.ui.h	2008/03/14 19:50:49	785717
+++ amarok/src/Options8.ui.h	2008/03/14 19:57:44	785718
@@ -12,6 +12,10 @@
 ** destructor.
 *****************************************************************************/
 
+void Options8::init()
+{
+    groupBox2->setEnabled( !s.isEmpty() );
+}
 
 void Options8::updateServices( const QString &s )
 {

--- amarok/src/Options8.ui.h	2008/03/14 19:57:44	785718
+++ amarok/src/Options8.ui.h	2008/03/14 19:57:48	785719
@@ -12,13 +12,11 @@
 ** destructor.
 *****************************************************************************/
 
-void Options8::init()
-{
-    groupBox2->setEnabled( !s.isEmpty() );
-}
-
 void Options8::updateServices( const QString &s )
 {
-    groupBox2->setEnabled( !s.isEmpty() );
+    bool empty = s.isEmpty();
+    groupBox2->setEnabled( !empty );
+    kcfg_SubmitPlayedSongs->setEnabled( !empty );
+    kcfg_RetrieveSimilarArtists->setEnabled( !empty );
 }