blob: 148204e5b3e1293dd69ff4634672927c65fb0c55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- multikey/configdlg.cpp.org 2005-06-15 22:54:50.000000000 +0000
+++ multikey/configdlg.cpp 2007-01-11 19:51:09.000000000 +0000
@@ -144,11 +144,11 @@
add_remove_grid->setMargin(3);
add_remove_grid->setSpacing(3);
- add_button = new QPushButton(tr("Add"), add_remove_grid);
+ add_button = new QPushButton(tr("Add custom..."), add_remove_grid);
add_button->setFlat(TRUE);
connect(add_button, SIGNAL(clicked()), SLOT(addMap()));
- remove_button = new QPushButton(tr("Remove"), add_remove_grid);
+ remove_button = new QPushButton(tr("Remove custom"), add_remove_grid);
remove_button->setFlat(TRUE);
if (keymaps->currentItem() == 0 || default_maps.find(QFileInfo(current_map).fileName()) != default_maps.end())
remove_button->setDisabled(true);
|