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

(-)trinity-tdmtheme-3.5.13.2/src/kdmtheme.cpp.ORI (-10 / +16 lines)
Lines 268-283 Link Here
268
268
269
void KDMThemeWidget::updateInfoView( ThemeData *theme )
269
void KDMThemeWidget::updateInfoView( ThemeData *theme )
270
{
270
{
271
	info->setText(
271
	if(theme) {
272
		((theme->copyright.length() > 0) ?
272
		info->setText(
273
			i18n("<qt><strong>Copyright:</strong> %1<br/></qt>",
273
			((theme->copyright.length() > 0) ?
274
				theme->copyright) : "") +
274
				i18n("<qt><strong>Copyright:</strong> %1<br/></qt>",
275
		((theme->description.length() > 0) ?
275
					theme->copyright) : "") +
276
			i18n("<qt><strong>Description:</strong> %1</qt>",
276
			((theme->description.length() > 0) ?
277
				theme->description) : "") );
277
				i18n("<qt><strong>Description:</strong> %1</qt>",
278
	preview->setPixmap( theme->path + '/' + theme->screenShot );
278
					theme->description) : "") );
279
	preview->setText( theme->screenShot.isEmpty() ?
279
		preview->setPixmap( theme->path + '/' + theme->screenShot );
280
		"Screenshot not available" : TQString() );
280
		preview->setText( theme->screenShot.isEmpty() ?
281
			i18n("Screenshot not available") : TQString() );
282
	} else {
283
		info->setText(i18n("No theme selected."));
284
		preview->setPixmap(NULL);
285
		preview->setText(i18n("Screenshot not available"));
286
	}
281
}
287
}
282
288
283
void KDMThemeWidget::installNewTheme()
289
void KDMThemeWidget::installNewTheme()

Return to bug 1544