equal
deleted
inserted
replaced
446 } |
446 } |
447 } |
447 } |
448 |
448 |
449 void PageOptions::setQuality(int value) |
449 void PageOptions::setQuality(int value) |
450 { |
450 { |
|
451 Q_UNUSED(value); |
|
452 |
451 int index = this->CBStereoMode->currentIndex(); |
453 int index = this->CBStereoMode->currentIndex(); |
452 if (index == 0) |
454 if (index == 0) |
453 previousQuality = this->SLQuality->value(); |
455 previousQuality = this->SLQuality->value(); |
454 } |
456 } |
455 |
457 |
456 void PageOptions::setFullscreen(int state) |
458 void PageOptions::setFullscreen(int state) |
457 { |
459 { |
|
460 Q_UNUSED(state); |
|
461 |
458 int index = this->CBStereoMode->currentIndex(); |
462 int index = this->CBStereoMode->currentIndex(); |
459 if (index != 7 && index != 8 && index != 9) |
463 if (index != 7 && index != 8 && index != 9) |
460 previousFullscreenValue = this->CBFullscreen->isChecked(); |
464 previousFullscreenValue = this->CBFullscreen->isChecked(); |
461 } |
465 } |
462 |
466 |
463 void PageOptions::setResolution(int state) |
467 void PageOptions::setResolution(int state) |
464 { |
468 { |
|
469 Q_UNUSED(state); |
|
470 |
465 int index = this->CBStereoMode->currentIndex(); |
471 int index = this->CBStereoMode->currentIndex(); |
466 if (index != 7 && index != 8 && index != 9) |
472 if (index != 7 && index != 8 && index != 9) |
467 previousResolutionIndex = this->CBResolution->currentIndex(); |
473 previousResolutionIndex = this->CBResolution->currentIndex(); |
468 } |
474 } |
469 |
475 |