By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1675
Collapse All | Expand All

(-)a/amarok/src/Options8.ui (-2 / +2 lines)
Lines 193-199 Link Here
193
                <cstring>groupBox2</cstring>
193
                <cstring>groupBox2</cstring>
194
            </property>
194
            </property>
195
            <property name="enabled">
195
            <property name="enabled">
196
                <bool>false</bool>
196
                <bool>true</bool>
197
            </property>
197
            </property>
198
            <property name="title">
198
            <property name="title">
199
                <string>last.fm Services</string>
199
                <string>last.fm Services</string>
Lines 237-243 Link Here
237
                        <cstring>kcfg_RetrieveSimilarArtists</cstring>
237
                        <cstring>kcfg_RetrieveSimilarArtists</cstring>
238
                    </property>
238
                    </property>
239
                    <property name="enabled">
239
                    <property name="enabled">
240
                        <bool>false</bool>
240
                        <bool>true</bool>
241
                    </property>
241
                    </property>
242
                    <property name="text">
242
                    <property name="text">
243
                        <string>&amp;Retrieve similar artists</string>
243
                        <string>&amp;Retrieve similar artists</string>
(-)a/amarok/src/Options8.ui.h (-2 / +2 lines)
Lines 15-22 Link Here
15
void Options8::updateServices( const TQString &s )
15
void Options8::updateServices( const TQString &s )
16
{
16
{
17
    bool empty = s.isEmpty();
17
    bool empty = s.isEmpty();
18
    groupBox2->setEnabled( !empty );
18
    //groupBox2->setEnabled( !empty );
19
    kcfg_SubmitPlayedSongs->setEnabled( !empty );
19
    kcfg_SubmitPlayedSongs->setEnabled( !empty );
20
    kcfg_RetrieveSimilarArtists->setEnabled( !empty );
20
    //kcfg_RetrieveSimilarArtists->setEnabled( !empty );
21
}
21
}
22
22

Return to bug 1675