Printing: add default case to switch

Add default case to fix switch warning.

Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Gehad elrobey 2015-07-18 20:27:33 +02:00 committed by Lubomir I. Ivanov
parent 7575bb169b
commit 1ae1a11c22

View file

@ -141,6 +141,8 @@ void TemplateEdit::on_buttonBox_clicked(QAbstractButton *button)
saveSettings();
updatePreview();
break;
default:
;
}
}