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 1360
Collapse All | Expand All

(-)tdepim/akregator/src/akregator.kcfg (+4 lines)
Lines 51-56 Link Here
51
  </entry>
51
  </entry>
52
  <entry key="UnderlineLinks" type="Bool"> 
52
  <entry key="UnderlineLinks" type="Bool"> 
53
  </entry>
53
  </entry>
54
  <entry key="EnableFavIcon" type="Bool"> 
55
  </entry>
56
  <entry key="AutoLoadImages" type="Bool"> 
57
  </entry>
54
 </group>
58
 </group>
55
  <group name="Archive">
59
  <group name="Archive">
56
   <entry key="ArchiveMode" type="Enum">
60
   <entry key="ArchiveMode" type="Enum">
(-)tdepim/akregator/src/akregator_part.cpp (+20 lines)
Lines 886-891 Link Here
886
        Settings::setUnderlineLinks(underline);
886
        Settings::setUnderlineLinks(underline);
887
    }
887
    }
888
888
889
    if (!conf->hasKey("EnableFavicon"))
890
    {
891
        bool enableFavicon = true;
892
        if (konq.hasKey("EnableFavicon"))
893
            enableFavicon = konq.readBoolEntry("EnableFavicon");
894
895
        kdDebug() << "Part::initFonts(): set EnableFavicon to " << enableFavicon << endl;
896
        Settings::setEnableFavIcon(enableFavicon);
897
    }
898
899
    if (!conf->hasKey("AutoLoadImages"))
900
    {
901
        bool autoLoadImages = true;
902
        if (konq.hasKey("AutoLoadImages"))
903
            autoLoadImages = konq.readBoolEntry("AutoLoadImages");
904
905
        kdDebug() << "Part::initFonts(): set AutoLoadImages to " << autoLoadImages << endl;
906
        Settings::setAutoLoadImages(autoLoadImages);
907
    }
908
889
}
909
}
890
910
891
bool Part::copyFile(const TQString& backup)
911
bool Part::copyFile(const TQString& backup)
(-)tdepim/akregator/src/settings_appearance.ui (+16 lines)
Lines 187-192 Link Here
187
                <string>&amp;Underline links</string>
187
                <string>&amp;Underline links</string>
188
            </property>
188
            </property>
189
        </widget>
189
        </widget>
190
        <widget class="TQCheckBox">
191
            <property name="name">
192
                <cstring>kcfg_EnableFavIcon</cstring>
193
            </property>
194
            <property name="text">
195
                <string>&amp;Enable favicons</string>
196
            </property>
197
        </widget>
198
        <widget class="TQCheckBox">
199
            <property name="name">
200
                <cstring>kcfg_AutoLoadImages</cstring>
201
            </property>
202
            <property name="text">
203
                <string>Automatically load &amp;images</string>
204
            </property>
205
        </widget>
190
        <spacer>
206
        <spacer>
191
            <property name="name">
207
            <property name="name">
192
                <cstring>spacer1</cstring>
208
                <cstring>spacer1</cstring>

Return to bug 1360