mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-23 10:30:53 +01:00
Fix typo
This commit is contained in:
@@ -152,7 +152,7 @@ QFont AddTableDialog::tableFont() const {
|
|||||||
void AddTableDialog::on_m_header_font_pb_clicked()
|
void AddTableDialog::on_m_header_font_pb_clicked()
|
||||||
{
|
{
|
||||||
bool b;
|
bool b;
|
||||||
auto font = QFontDialog::getFont(&b, m_header_font, this, tr("Sélectionné la police des en tête du tableau"));
|
auto font = QFontDialog::getFont(&b, m_header_font, this, tr("Sélectionner la police des en tête du tableau"));
|
||||||
if (b) {
|
if (b) {
|
||||||
m_header_font = font;
|
m_header_font = font;
|
||||||
ui->m_header_font_pb->setText(font.family());
|
ui->m_header_font_pb->setText(font.family());
|
||||||
@@ -163,7 +163,7 @@ void AddTableDialog::on_m_header_font_pb_clicked()
|
|||||||
void AddTableDialog::on_m_table_font_pb_clicked()
|
void AddTableDialog::on_m_table_font_pb_clicked()
|
||||||
{
|
{
|
||||||
bool b;
|
bool b;
|
||||||
auto font = QFontDialog::getFont(&b, m_table_font, this, tr("Sélectionné la police des cellules du tableau"));
|
auto font = QFontDialog::getFont(&b, m_table_font, this, tr("Sélectionner la police des cellules du tableau"));
|
||||||
if (b) {
|
if (b) {
|
||||||
m_table_font = font;
|
m_table_font = font;
|
||||||
ui->m_table_font_pb->setText(font.family());
|
ui->m_table_font_pb->setText(font.family());
|
||||||
|
|||||||
Reference in New Issue
Block a user