diff options
Diffstat (limited to 'certmanager/lib/tests/test_keyselectiondialog.cpp')
-rw-r--r-- | certmanager/lib/tests/test_keyselectiondialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/certmanager/lib/tests/test_keyselectiondialog.cpp b/certmanager/lib/tests/test_keyselectiondialog.cpp index e6c85fca0..1e3794bc6 100644 --- a/certmanager/lib/tests/test_keyselectiondialog.cpp +++ b/certmanager/lib/tests/test_keyselectiondialog.cpp @@ -55,7 +55,7 @@ int main( int argc, char ** argv ) { std::vector<GpgME::Key>(), Kleo::KeySelectionDialog::AllKeys, true, true ); - if ( dlg.exec() == QDialog::Accepted ) { + if ( dlg.exec() == TQDialog::Accepted ) { kdDebug() << "accepted; selected key: " << (dlg.selectedKey().userID(0).id() ? dlg.selectedKey().userID(0).id() : "<null>") << "\nselected _keys_:" << endl; for ( std::vector<GpgME::Key>::const_iterator it = dlg.selectedKeys().begin() ; it != dlg.selectedKeys().end() ; ++it ) kdDebug() << (it->userID(0).id() ? it->userID(0).id() : "<null>") << endl; |