summaryrefslogtreecommitdiffstats
path: root/src/fetch/srufetcher.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commitfeaf6d62da1685a34fbc8c201f31da681f04e2a7 (patch)
treede2bad7247bd5f95ab845f8650a942a45248d30a /src/fetch/srufetcher.cpp
parent2595a15ebeb6fc46b7cb241d01ec0c2460ec2111 (diff)
downloadtellico-feaf6d62da1685a34fbc8c201f31da681f04e2a7.tar.gz
tellico-feaf6d62da1685a34fbc8c201f31da681f04e2a7.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/fetch/srufetcher.cpp')
-rw-r--r--src/fetch/srufetcher.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/fetch/srufetcher.cpp b/src/fetch/srufetcher.cpp
index 96ca7d4..6719a53 100644
--- a/src/fetch/srufetcher.cpp
+++ b/src/fetch/srufetcher.cpp
@@ -51,12 +51,12 @@ namespace {
using Tellico::Fetch::SRUFetcher;
using Tellico::Fetch::SRUConfigWidget;
-SRUFetcher::SRUFetcher(TQObject* tqparent_, const char* name_)
- : Fetcher(tqparent_, name_), m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) {
+SRUFetcher::SRUFetcher(TQObject* parent_, const char* name_)
+ : Fetcher(parent_, name_), m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) {
}
SRUFetcher::SRUFetcher(const TQString& name_, const TQString& host_, uint port_, const TQString& path_,
- TQObject* tqparent_) : Fetcher(tqparent_),
+ TQObject* parent_) : Fetcher(parent_),
m_host(host_), m_port(port_), m_path(path_),
m_job(0), m_MARCXMLHandler(0), m_MODSHandler(0), m_started(false) {
m_name = name_; // m_name is protected in super class
@@ -412,9 +412,9 @@ bool SRUFetcher::initMODSHandler() {
return true;
}
-Tellico::Fetch::Fetcher::Ptr SRUFetcher::libraryOfCongress(TQObject* tqparent_) {
+Tellico::Fetch::Fetcher::Ptr SRUFetcher::libraryOfCongress(TQObject* parent_) {
return new SRUFetcher(i18n("Library of Congress (US)"), TQString::tqfromLatin1("z3950.loc.gov"), 7090,
- TQString::tqfromLatin1("voyager"), tqparent_);
+ TQString::tqfromLatin1("voyager"), parent_);
}
// static
@@ -425,12 +425,12 @@ Tellico::StringMap SRUFetcher::customFields() {
return map;
}
-Tellico::Fetch::ConfigWidget* SRUFetcher::configWidget(TQWidget* tqparent_) const {
- return new SRUConfigWidget(tqparent_, this);
+Tellico::Fetch::ConfigWidget* SRUFetcher::configWidget(TQWidget* parent_) const {
+ return new SRUConfigWidget(parent_, this);
}
-SRUConfigWidget::SRUConfigWidget(TQWidget* tqparent_, const SRUFetcher* fetcher_ /*=0*/)
- : ConfigWidget(tqparent_) {
+SRUConfigWidget::SRUConfigWidget(TQWidget* parent_, const SRUFetcher* fetcher_ /*=0*/)
+ : ConfigWidget(parent_) {
TQGridLayout* l = new TQGridLayout(optionsWidget(), 4, 2);
l->setSpacing(4);
l->setColStretch(1, 10);