[qet] [2914] Minor change |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 2914
Author: scorpio810
Date: 2014-03-08 15:08:16 +0100 (Sat, 08 Mar 2014)
Log Message:
-----------
Minor change
Modified Paths:
--------------
trunk/sources/exportdialog.cpp
trunk/sources/exportpropertieswidget.cpp
Modified: trunk/sources/exportdialog.cpp
===================================================================
--- trunk/sources/exportdialog.cpp 2014-03-08 13:45:36 UTC (rev 2913)
+++ trunk/sources/exportdialog.cpp 2014-03-08 14:08:16 UTC (rev 2914)
@@ -76,8 +76,8 @@
hLayout -> addWidget(new QLabel(tr("Choisissez les sch\351mas que vous d\351sirez exporter ainsi que leurs dimensions :")));
selectAll = new QPushButton();
deSelectAll = new QPushButton();
- selectAll -> setText(tr("Select All"));
- deSelectAll -> setText(tr("De-Select All"));
+ selectAll -> setText(tr("Tout cocher"));
+ deSelectAll -> setText(tr("Tout d\351cocher"));
hLayout -> addWidget(selectAll);
hLayout -> addWidget(deSelectAll);
connect(selectAll, SIGNAL(clicked()), this, SLOT(slot_selectAllClicked()));
Modified: trunk/sources/exportpropertieswidget.cpp
===================================================================
--- trunk/sources/exportpropertieswidget.cpp 2014-03-08 13:45:36 UTC (rev 2913)
+++ trunk/sources/exportpropertieswidget.cpp 2014-03-08 14:08:16 UTC (rev 2914)
@@ -50,7 +50,7 @@
export_properties.format = format -> itemData(format -> currentIndex()).toString();
export_properties.draw_grid = draw_grid -> isChecked();
export_properties.draw_border = draw_border -> isChecked();
- export_properties.draw_titleblock = draw_titleblock -> isChecked();
+ export_properties.draw_titleblock = draw_titleblock -> isChecked();
export_properties.draw_terminals = draw_terminals -> isChecked();
export_properties.draw_colored_conductors = draw_colored_conductors -> isChecked();
export_properties.exported_area = export_border -> isChecked() ? QET::BorderArea : QET::ElementsArea;
@@ -70,7 +70,7 @@
draw_grid -> setChecked(export_properties.draw_grid);
draw_border -> setChecked(export_properties.draw_border);
- draw_titleblock -> setChecked(export_properties.draw_titleblock);
+ draw_titleblock -> setChecked(export_properties.draw_titleblock);
draw_terminals -> setChecked(export_properties.draw_terminals);
draw_colored_conductors -> setChecked(export_properties.draw_colored_conductors);
@@ -203,7 +203,7 @@
connect(exported_content_choices, SIGNAL(buttonClicked(QAbstractButton *)), this, SIGNAL(exportedAreaChanged()));
connect(draw_grid, SIGNAL(stateChanged(int)), this, SIGNAL(optionChanged()));
connect(draw_border, SIGNAL(stateChanged(int)), this, SIGNAL(optionChanged()));
- connect(draw_titleblock, SIGNAL(stateChanged(int)), this, SIGNAL(optionChanged()));
+ connect(draw_titleblock, SIGNAL(stateChanged(int)), this, SIGNAL(optionChanged()));
connect(draw_terminals, SIGNAL(stateChanged(int)), this, SIGNAL(optionChanged()));
connect(draw_colored_conductors, SIGNAL(stateChanged(int)), this, SIGNAL(optionChanged()));
}