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

(-)kdelibs-3.5.13.2/krandr/libkrandr.cc~ (-1 / +1 lines)
Lines 601-607 Link Here
601
				if (screendata->is_primary || screendata->is_extended) {
601
				if (screendata->is_primary || screendata->is_extended) {
602
					command.append(TQString(" --mode %1x%2").arg(screendata->current_x_pixel_count).arg(screendata->current_y_pixel_count));
602
					command.append(TQString(" --mode %1x%2").arg(screendata->current_x_pixel_count).arg(screendata->current_y_pixel_count));
603
					command.append(TQString(" --pos %1x%2").arg(screendata->absolute_x_position).arg(screendata->absolute_y_position));
603
					command.append(TQString(" --pos %1x%2").arg(screendata->absolute_x_position).arg(screendata->absolute_y_position));
604
					command.append(TQString(" --refresh %1").arg((*screendata->refresh_rates.at(screendata->current_refresh_rate_index)).replace("Hz", "")));
604
					command.append(TQString(" --refresh %1").arg(atoi((*screendata->refresh_rates.at(screendata->current_refresh_rate_index)).ascii())));
605
					command.append(TQString(" --gamma %1:%2:%3").arg(screendata->gamma_red).arg(screendata->gamma_green).arg(screendata->gamma_blue));
605
					command.append(TQString(" --gamma %1:%2:%3").arg(screendata->gamma_red).arg(screendata->gamma_green).arg(screendata->gamma_blue));
606
					if (screendata->current_rotation_index == 0) command.append(" --rotate ").append("normal");
606
					if (screendata->current_rotation_index == 0) command.append(" --rotate ").append("normal");
607
					if (screendata->current_rotation_index == 1) command.append(" --rotate ").append("left");
607
					if (screendata->current_rotation_index == 1) command.append(" --rotate ").append("left");

Return to bug 1913