TargetWindowDlg: Use the current text instead of the original window title

git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@325 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
sniperbeamer 2009-06-28 14:28:57 +00:00
parent 049ea5e5a2
commit 21fe83bb82
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ TargetWindowDlg::TargetWindowDlg(QWidget* parent) : QDialog(parent){
} }
void TargetWindowDlg::OnAccept(){ void TargetWindowDlg::OnAccept(){
pWindowTitle = comboWindow->itemText(comboWindow->currentIndex()); pWindowTitle = comboWindow->currentText();
accept(); accept();
} }