diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-14 19:19:24 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-14 19:19:24 (GMT) |
commit | 3b3eb0ff07877c8cc9bb8a56f9be8c17ca60ec01 (patch) | |
tree | b88f033b203c10556595399fb1b56f8b480c00a9 /Swift/QtUI/QtContactEditWindow.cpp | |
parent | aebf16650e33f442d3cc3bbc87f034c3c146e596 (diff) | |
download | swift-3b3eb0ff07877c8cc9bb8a56f9be8c17ca60ec01.zip swift-3b3eb0ff07877c8cc9bb8a56f9be8c17ca60ec01.tar.bz2 |
Use "OK" instead of "Ok" for consistency.
Resolves: #791
Diffstat (limited to 'Swift/QtUI/QtContactEditWindow.cpp')
-rw-r--r-- | Swift/QtUI/QtContactEditWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/QtContactEditWindow.cpp b/Swift/QtUI/QtContactEditWindow.cpp index 5affaef..4be2939 100644 --- a/Swift/QtUI/QtContactEditWindow.cpp +++ b/Swift/QtUI/QtContactEditWindow.cpp @@ -41,7 +41,7 @@ QtContactEditWindow::QtContactEditWindow() : contactEditWidget_(NULL) { QPushButton* removeButton = new QPushButton(tr("Remove contact"), this); connect(removeButton, SIGNAL(clicked()), this, SLOT(handleRemoveContact())); buttonLayout->addWidget(removeButton); - QPushButton* okButton = new QPushButton(tr("Ok"), this); + QPushButton* okButton = new QPushButton(tr("OK"), this); connect(okButton, SIGNAL(clicked()), this, SLOT(handleUpdateContact())); buttonLayout->addStretch(); buttonLayout->addWidget(okButton); |