diff options
Diffstat (limited to 'src/fetchdialog.cpp')
-rw-r--r-- | src/fetchdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fetchdialog.cpp b/src/fetchdialog.cpp index 8392fab..0ca85f9 100644 --- a/src/fetchdialog.cpp +++ b/src/fetchdialog.cpp @@ -553,9 +553,9 @@ void FetchDialog::slotKeyChanged(int idx_) { if(key == Fetch::ISBN || key == Fetch::UPC || key == Fetch::LCCN) { m_multipleISBN->setEnabled(true); if(key == Fetch::ISBN) { - m_valueLineEdit->setValidator(new ISBNValidator(TQT_TQOBJECT(this))); + m_valueLineEdit->setValidator(new ISBNValidator(this)); } else { - UPCValidator* upc = new UPCValidator(TQT_TQOBJECT(this)); + UPCValidator* upc = new UPCValidator(this); connect(upc, TQT_SIGNAL(signalISBN()), TQT_SLOT(slotUPC2ISBN())); m_valueLineEdit->setValidator(upc); // only want to convert to ISBN if ISBN is accepted by the fetcher |