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

(-)gtk-qt-engine/kcm_gtk/kcmgtk.cpp.ORI (-2 / +2 lines)
Lines 270-279 Link Here
270
	bool gtk3installed = false;
270
	bool gtk3installed = false;
271
	widget->styleBox3->clear();
271
	widget->styleBox3->clear();
272
	TQStringList otherGtk3Styles = gtk3Themes.keys();
272
	TQStringList otherGtk3Styles = gtk3Themes.keys();
273
	if(!otherGtk3Styles.empty()) {
273
	if(!otherGtk3Styles.empty() && otherGtk3Styles.find("tdegtk")!=otherGtk3Styles.end()) {
274
		otherGtk3Styles.remove(otherGtk3Styles.find("tdegtk"));
274
		otherGtk3Styles.remove(otherGtk3Styles.find("tdegtk"));
275
		gtk3installed = !otherGtk3Styles.empty();
276
	}
275
	}
276
	gtk3installed = !otherGtk3Styles.empty();
277
	if(gtk3installed) {
277
	if(gtk3installed) {
278
		widget->styleBox3->insertStringList(otherGtk3Styles);
278
		widget->styleBox3->insertStringList(otherGtk3Styles);
279
	}
279
	}

Return to bug 1672