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:
parent
049ea5e5a2
commit
21fe83bb82
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue