diff options
Diffstat (limited to 'kpilot/conduits/sysinfoconduit')
-rw-r--r-- | kpilot/conduits/sysinfoconduit/sysinfo-conduit.cc | 144 | ||||
-rw-r--r-- | kpilot/conduits/sysinfoconduit/sysinfo-conduit.h | 12 | ||||
-rw-r--r-- | kpilot/conduits/sysinfoconduit/sysinfo-setup.cc | 46 | ||||
-rw-r--r-- | kpilot/conduits/sysinfoconduit/sysinfo-setup.h | 2 |
4 files changed, 102 insertions, 102 deletions
diff --git a/kpilot/conduits/sysinfoconduit/sysinfo-conduit.cc b/kpilot/conduits/sysinfoconduit/sysinfo-conduit.cc index b3e69b65c..86fc10752 100644 --- a/kpilot/conduits/sysinfoconduit/sysinfo-conduit.cc +++ b/kpilot/conduits/sysinfoconduit/sysinfo-conduit.cc @@ -29,10 +29,10 @@ #include <pi-version.h> -#include <qtimer.h> -#include <qdir.h> -#include <qfileinfo.h> -#include <qregexp.h> +#include <tqtimer.h> +#include <tqdir.h> +#include <tqfileinfo.h> +#include <tqregexp.h> #include <kconfig.h> #include <kdebug.h> @@ -49,7 +49,7 @@ #include "sysinfo-conduit.moc" #include "sysinfoSettings.h" -const QString SysInfoConduit::defaultpage = CSL1("KPilot System Information Page\n" +const TQString SysInfoConduit::defaultpage = CSL1("KPilot System Information Page\n" "==============================\n" "(Kpilot was unable to find the correct template file, \n" "so this simple template was used.)\n\n" @@ -156,7 +156,7 @@ unsigned long version_conduit_sysinfo = Pilot::PLUGIN_API; SysInfoConduit::SysInfoConduit(KPilotLink * o, const char *n, - const QStringList & a) : + const TQStringList & a) : ConduitAction(o, n, a) { FUNCTIONSETUP; @@ -196,7 +196,7 @@ void SysInfoConduit::readConfig() readConfig(); - QTimer::singleShot(0, this, SLOT(hardwareInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(hardwareInfo())); return true; } @@ -204,7 +204,7 @@ void SysInfoConduit::hardwareInfo() { FUNCTIONSETUP; if (fHardwareInfo) { - QString unknown = i18n("unknown"); + TQString unknown = i18n("unknown"); /* Retrieve values for * - #deviceid# @@ -214,14 +214,14 @@ void SysInfoConduit::hardwareInfo() * - #devicetype# */ KPilotSysInfo sysinfo = fHandle->getSysInfo(); - fValues[CSL1("deviceid")] = QString::fromLatin1(sysinfo.getProductID()); + fValues[CSL1("deviceid")] = TQString::fromLatin1(sysinfo.getProductID()); const KPilotCard *device = fHandle->getCardInfo(); if (device) { - fValues[CSL1("devicename")] = QString::fromLatin1(device->getCardName()); + fValues[CSL1("devicename")] = TQString::fromLatin1(device->getCardName()); fValues[CSL1("devicemodel")] = unknown; // TODO - fValues[CSL1("manufacturer")] = QString::fromLatin1(device->getCardManufacturer()); + fValues[CSL1("manufacturer")] = TQString::fromLatin1(device->getCardManufacturer()); } else { @@ -235,7 +235,7 @@ void SysInfoConduit::hardwareInfo() KPILOT_DELETE(device); keepParts.append(CSL1("hardware")); } else removeParts.append(CSL1("hardware")); - QTimer::singleShot(0, this, SLOT(userInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(userInfo())); } void SysInfoConduit::userInfo() @@ -257,15 +257,15 @@ void SysInfoConduit::userInfo() { fValues[CSL1("pw")] = i18n("No password set"); } - fValues[CSL1("uid")] = QString::number(user.data()->userID); - fValues[CSL1("viewerid")] = QString::number(user.data()->viewerID); + fValues[CSL1("uid")] = TQString::number(user.data()->userID); + fValues[CSL1("viewerid")] = TQString::number(user.data()->viewerID); keepParts.append(CSL1("user")); } else { removeParts.append(CSL1("user")); } - QTimer::singleShot(0, this, SLOT(memoryInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(memoryInfo())); } void SysInfoConduit::memoryInfo() @@ -280,13 +280,13 @@ void SysInfoConduit::memoryInfo() const KPilotCard *device = fHandle->getCardInfo(); if (device) { - fValues[CSL1("rom")] = QString::number(device->getRomSize()/1024); - fValues[CSL1("totalmem")] = QString::number(device->getRamSize()/1024); - fValues[CSL1("freemem")] = QString::number(device->getRamFree()/1024); + fValues[CSL1("rom")] = TQString::number(device->getRomSize()/1024); + fValues[CSL1("totalmem")] = TQString::number(device->getRamSize()/1024); + fValues[CSL1("freemem")] = TQString::number(device->getRamFree()/1024); } keepParts.append(CSL1("memory")); } else removeParts.append(CSL1("memory")); - QTimer::singleShot(0, this, SLOT(storageInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(storageInfo())); } void SysInfoConduit::storageInfo() @@ -299,8 +299,8 @@ void SysInfoConduit::storageInfo() const KPilotCard *device = fHandle->getCardInfo(1); if (device) { fValues[CSL1("cards")] = CSL1("%1 (%2, %3 kB of %3 kB free)") - .arg(QString::fromLatin1(device->getCardName())) - .arg(QString::fromLatin1(device->getCardManufacturer())) + .arg(TQString::fromLatin1(device->getCardName())) + .arg(TQString::fromLatin1(device->getCardManufacturer())) .arg(device->getRamFree()/1024) .arg(device->getRamSize()/1024); KPILOT_DELETE(device); @@ -309,7 +309,7 @@ void SysInfoConduit::storageInfo() } keepParts.append(CSL1("storage")); } else removeParts.append(CSL1("storage")); - QTimer::singleShot(0, this, SLOT(dbListInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(dbListInfo())); } void SysInfoConduit::dbListInfo() @@ -322,7 +322,7 @@ void SysInfoConduit::dbListInfo() dblist=deviceLink()->getDBList(); keepParts.append(CSL1("dblist")); } else removeParts.append(CSL1("dblist")); - QTimer::singleShot(0, this, SLOT(recNumberInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(recNumberInfo())); } void SysInfoConduit::recNumberInfo() @@ -336,34 +336,34 @@ void SysInfoConduit::recNumberInfo() * - #memos# */ PilotDatabase *fDatabase = 0L; - QString ERROR = CSL1("ERROR"); + TQString ERROR = CSL1("ERROR"); fValues[CSL1("addresses")] = ERROR; fValues[CSL1("events")] = ERROR; fValues[CSL1("todos")] = ERROR; fValues[CSL1("memos")] = ERROR; fDatabase = deviceLink()->database(CSL1("AddressDB")); if (fDatabase) { - fValues[CSL1("addresses")] = QString::number(fDatabase->recordCount()); + fValues[CSL1("addresses")] = TQString::number(fDatabase->recordCount()); KPILOT_DELETE(fDatabase); } fDatabase = deviceLink()->database(CSL1("DatebookDB")); if (fDatabase) { - fValues[CSL1("events")] = QString::number(fDatabase->recordCount()); + fValues[CSL1("events")] = TQString::number(fDatabase->recordCount()); KPILOT_DELETE(fDatabase); } fDatabase = deviceLink()->database(CSL1("ToDoDB")); if (fDatabase) { - fValues[CSL1("todos")] = QString::number(fDatabase->recordCount()); + fValues[CSL1("todos")] = TQString::number(fDatabase->recordCount()); KPILOT_DELETE(fDatabase); } fDatabase = deviceLink()->database(CSL1("MemoDB")); if (fDatabase) { - fValues[CSL1("memos")] = QString::number(fDatabase->recordCount()); + fValues[CSL1("memos")] = TQString::number(fDatabase->recordCount()); KPILOT_DELETE(fDatabase); } keepParts.append(CSL1("records")); } else removeParts.append(CSL1("records")); - QTimer::singleShot(0, this, SLOT(syncInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(syncInfo())); } void SysInfoConduit::syncInfo() @@ -377,16 +377,16 @@ void SysInfoConduit::syncInfo() */ KPilotUser user = deviceLink()->getPilotUser(); time_t lastsync = user.getLastSyncDate(); - QDateTime qlastsync; + TQDateTime qlastsync; qlastsync.setTime_t(lastsync); fValues[CSL1("lastsync")] = qlastsync.toString(Qt::LocalDate); lastsync = user.getLastSuccessfulSyncDate(); qlastsync.setTime_t(lastsync); fValues[CSL1("lastsuccsync")] = qlastsync.toString(Qt::LocalDate); - fValues[CSL1("lastsyncpc")] = QString::number(user.getLastSyncPC()); + fValues[CSL1("lastsyncpc")] = TQString::number(user.getLastSyncPC()); keepParts.append(CSL1("sync")); } else removeParts.append(CSL1("sync")); - QTimer::singleShot(0, this, SLOT(pcVersionInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(pcVersionInfo())); } void SysInfoConduit::pcVersionInfo() @@ -400,7 +400,7 @@ void SysInfoConduit::pcVersionInfo() * - #kpilot# * - #pilotlink# */ - fValues[CSL1("kpilot")] = QString::fromLatin1(KPILOT_VERSION); + fValues[CSL1("kpilot")] = TQString::fromLatin1(KPILOT_VERSION); fValues[CSL1("kde")] = i18n("unknown"); fValues[CSL1("qt")] = i18n("unknown"); fValues[CSL1("os")] = i18n("unknown"); @@ -408,29 +408,29 @@ void SysInfoConduit::pcVersionInfo() struct utsname name; if (uname (&name) >= 0) { fValues[CSL1("os")] = CSL1("%1 %3, %5") - .arg(QString::fromLatin1(name.sysname)) - .arg(QString::fromLatin1(name.release)) - .arg(QString::fromLatin1(name.machine)); - fValues[CSL1("hostname")] = CSL1("%2").arg(QString::fromLatin1(name.nodename)); + .arg(TQString::fromLatin1(name.sysname)) + .arg(TQString::fromLatin1(name.release)) + .arg(TQString::fromLatin1(name.machine)); + fValues[CSL1("hostname")] = CSL1("%2").arg(TQString::fromLatin1(name.nodename)); } #ifdef KDE_VERSION_STRING - fValues[CSL1("kde")] = QString::fromLatin1(KDE_VERSION_STRING); + fValues[CSL1("kde")] = TQString::fromLatin1(KDE_VERSION_STRING); #endif #ifdef QT_VERSION_STR - fValues[CSL1("qt")] = QString::fromLatin1(QT_VERSION_STR); + fValues[CSL1("qt")] = TQString::fromLatin1(QT_VERSION_STR); #endif fValues[CSL1("pilotlink")] = CSL1("%1.%2.%3%4") .arg(PILOT_LINK_VERSION) .arg(PILOT_LINK_MAJOR) .arg(PILOT_LINK_MINOR) #ifdef PILOT_LINK_PATCH - .arg(QString::fromLatin1(PILOT_LINK_PATCH)); + .arg(TQString::fromLatin1(PILOT_LINK_PATCH)); #else - .arg(QString()); + .arg(TQString()); #endif keepParts.append(CSL1("pcversion")); } else removeParts.append(CSL1("pcversion")); - QTimer::singleShot(0, this, SLOT(palmVersionInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(palmVersionInfo())); } void SysInfoConduit::palmVersionInfo() @@ -440,7 +440,7 @@ void SysInfoConduit::palmVersionInfo() /* Retrieve values for * - #palmos# */ -/* fValues["palmos"] = QString("PalmOS %1.%2 (compat %3.%4)") +/* fValues["palmos"] = TQString("PalmOS %1.%2 (compat %3.%4)") .arg(fHandle->getSysInfo()->getMajorVersion()) .arg(fHandle->getSysInfo()->getMinorVersion()) .arg(fHandle->getSysInfo()->getCompatMajorVersion()) @@ -450,7 +450,7 @@ void SysInfoConduit::palmVersionInfo() keepParts.append(CSL1("palmversion")); } else removeParts.append(CSL1("palmversion")); - QTimer::singleShot(0, this, SLOT(debugInfo())); + TQTimer::singleShot(0, this, TQT_SLOT(debugInfo())); } void SysInfoConduit::debugInfo() @@ -463,18 +463,18 @@ void SysInfoConduit::debugInfo() fValues[CSL1("debug")] = i18n("No debug data"); keepParts.append(CSL1("debug")); } else removeParts.append(CSL1("debug")); - QTimer::singleShot(0, this, SLOT(writeFile())); + TQTimer::singleShot(0, this, TQT_SLOT(writeFile())); } void SysInfoConduit::writeFile() { FUNCTIONSETUP; - fValues[CSL1("date")] = QDateTime::currentDateTime().toString(Qt::LocalDate); + fValues[CSL1("date")] = TQDateTime::currentDateTime().toString(Qt::LocalDate); - QString output; + TQString output; // Open the template file - QString templatefile; + TQString templatefile; switch(fOutputType) { case eOutputText: @@ -495,9 +495,9 @@ void SysInfoConduit::writeFile() #ifdef DEBUG DEBUGKPILOT<<"Loading template file "<<templatefile<<endl; #endif - QFile infile(templatefile); + TQFile infile(templatefile); if (infile.open(IO_ReadOnly)) { - QTextStream instream(&infile); + TQTextStream instream(&infile); output = instream.read(); infile.close(); loaded=true; @@ -512,32 +512,32 @@ void SysInfoConduit::writeFile() } // Remove all parts not extracted - for ( QStringList::Iterator it = removeParts.begin(); it != removeParts.end(); ++it ) { - QRegExp re(CSL1("<!--#if%1#.*#endif%1#-->").arg(*it).arg(*it)); + for ( TQStringList::Iterator it = removeParts.begin(); it != removeParts.end(); ++it ) { + TQRegExp re(CSL1("<!--#if%1#.*#endif%1#-->").arg(*it).arg(*it)); re.setMinimal(true); output.remove(re); } - for ( QStringList::Iterator it = keepParts.begin(); it != keepParts.end(); ++it ) { - QRegExp re(CSL1("<!--#if%1#(.*)#endif%1#-->").arg(*it).arg(*it)); + for ( TQStringList::Iterator it = keepParts.begin(); it != keepParts.end(); ++it ) { + TQRegExp re(CSL1("<!--#if%1#(.*)#endif%1#-->").arg(*it).arg(*it)); re.setMinimal(true); output.replace(re, CSL1("\\1")); } // Do a loop through all keys in fValues - QMap<QString,QString>::Iterator it; + TQMap<TQString,TQString>::Iterator it; for ( it = fValues.begin(); it != fValues.end(); ++it ) { output.replace(CSL1("#%1#").arg(it.key()), it.data()); } // Insert the list of databases - QRegExp re(CSL1("#dblist\\[(.*)\\]#")); + TQRegExp re(CSL1("#dblist\\[(.*)\\]#")); re.setMinimal(true); while (re.search(output)>=0){ - QString dbstring; - QString subpatt=re.cap(1); + TQString dbstring; + TQString subpatt=re.cap(1); for (KPilotLink::DBInfoList::ConstIterator i = dblist.begin(); i != dblist.end(); ++i ) { DBInfo dbi = *i; - QString newpatt(subpatt); + TQString newpatt(subpatt); char tmpchr[5]; ::memset(&tmpchr[0], 0, 5); /* Patterns for the dblist argument: @@ -552,16 +552,16 @@ void SysInfoConduit::writeFile() * %8 .. modifyDate * %9 .. backupDate */ - newpatt.replace(CSL1("%0"), QString::fromLatin1(dbi.name)); + newpatt.replace(CSL1("%0"), TQString::fromLatin1(dbi.name)); set_long(&tmpchr[0],dbi.type); - newpatt.replace(CSL1("%1"), QString::fromLatin1(tmpchr)); + newpatt.replace(CSL1("%1"), TQString::fromLatin1(tmpchr)); set_long(&tmpchr[0],dbi.creator); - newpatt.replace(CSL1("%2"), QString::fromLatin1(tmpchr)); - newpatt.replace(CSL1("%3"), QString::number(dbi.index)); - newpatt.replace(CSL1("%4"), QString::number(dbi.flags)); - newpatt.replace(CSL1("%5"), QString::number(dbi.miscFlags)); - newpatt.replace(CSL1("%6"), QString::number(dbi.version)); - QDateTime tm; + newpatt.replace(CSL1("%2"), TQString::fromLatin1(tmpchr)); + newpatt.replace(CSL1("%3"), TQString::number(dbi.index)); + newpatt.replace(CSL1("%4"), TQString::number(dbi.flags)); + newpatt.replace(CSL1("%5"), TQString::number(dbi.miscFlags)); + newpatt.replace(CSL1("%6"), TQString::number(dbi.version)); + TQDateTime tm; tm.setTime_t(dbi.createDate); newpatt.replace(CSL1("%7"), tm.toString(Qt::LocalDate)); tm.setTime_t(dbi.modifyDate); @@ -576,12 +576,12 @@ void SysInfoConduit::writeFile() } // Write out the result - QFile outfile(fOutputFile); + TQFile outfile(fOutputFile); #ifdef DEBUG DEBUGKPILOT << fname << ": Writing file <" << fOutputFile << ">" << endl; #endif if (fOutputFile.isEmpty() || (!outfile.open(IO_WriteOnly)) ) { - QFileInfo fi(QDir::home(), CSL1("KPilotSysInfo.")+QFileInfo(templatefile).extension() ); + TQFileInfo fi(TQDir::home(), CSL1("KPilotSysInfo.")+TQFileInfo(templatefile).extension() ); fOutputFile=fi.absFilePath(); WARNINGKPILOT << "Unable to open output file, using " << fOutputFile << " instead." << endl; emit logMessage(i18n("Unable to open output file, using %1 instead.").arg(fOutputFile)); @@ -589,18 +589,18 @@ void SysInfoConduit::writeFile() if (!outfile.open(IO_WriteOnly)) { WARNINGKPILOT<< "Unable to open " << fOutputFile << endl; emit logError(i18n("Unable to open %1").arg(fOutputFile)); - QTimer::singleShot(0, this, SLOT(cleanup())); + TQTimer::singleShot(0, this, TQT_SLOT(cleanup())); return; } } // Finally, write the actual text out to the file. - QTextStream outstream(&outfile); + TQTextStream outstream(&outfile); outstream<<output; outfile.close(); emit logMessage(i18n("Handheld system information written to the file %1").arg(fOutputFile)); - QTimer::singleShot(0, this, SLOT(cleanup())); + TQTimer::singleShot(0, this, TQT_SLOT(cleanup())); } void SysInfoConduit::cleanup() diff --git a/kpilot/conduits/sysinfoconduit/sysinfo-conduit.h b/kpilot/conduits/sysinfoconduit/sysinfo-conduit.h index 05bc395d3..803bc7370 100644 --- a/kpilot/conduits/sysinfoconduit/sysinfo-conduit.h +++ b/kpilot/conduits/sysinfoconduit/sysinfo-conduit.h @@ -37,7 +37,7 @@ public: SysInfoConduit( KPilotLink *o, const char *n = 0L, - const QStringList &a = QStringList() ); + const TQStringList &a = TQStringList() ); virtual ~SysInfoConduit(); virtual bool exec(); @@ -58,12 +58,12 @@ public slots: protected: void readConfig(); private: - QMap<QString,QString> fValues; + TQMap<TQString,TQString> fValues; bool fHardwareInfo, fUserInfo, fMemoryInfo, fStorageInfo, fDBList, fRecordNumber, fSyncInfo, fKDEVersion, fPalmOSVersion, fDebugInfo; - QString fOutputFile, fTemplateFile; + TQString fOutputFile, fTemplateFile; enum eOutputTypeEnum { eOutputHTML=0, eOutputText, @@ -71,9 +71,9 @@ private: } fOutputType; KPilotLink::DBInfoList dblist; - QStringList removeParts; - QStringList keepParts; - static const QString defaultpage; + TQStringList removeParts; + TQStringList keepParts; + static const TQString defaultpage; } ; #endif diff --git a/kpilot/conduits/sysinfoconduit/sysinfo-setup.cc b/kpilot/conduits/sysinfoconduit/sysinfo-setup.cc index ed7419ab3..271db659b 100644 --- a/kpilot/conduits/sysinfoconduit/sysinfo-setup.cc +++ b/kpilot/conduits/sysinfoconduit/sysinfo-setup.cc @@ -28,11 +28,11 @@ #include "options.h" -#include <qtabwidget.h> -#include <qradiobutton.h> -#include <qcheckbox.h> -#include <qbuttongroup.h> -#include <qlistview.h> +#include <tqtabwidget.h> +#include <tqradiobutton.h> +#include <tqcheckbox.h> +#include <tqbuttongroup.h> +#include <tqlistview.h> #include <kaboutdata.h> #include <kapplication.h> @@ -81,11 +81,11 @@ const sysinfoEntry_t sysinfoEntries[] = /* ** This is a convenience define to update an item's "original setting". */ -#define updateSetting(i) { QCheckListItem *ubbu=(i); \ - ubbu->setText(PART_SETTING,(ubbu->isOn() ? CSL1("1") : QString::null)); } +#define updateSetting(i) { TQCheckListItem *ubbu=(i); \ + ubbu->setText(PART_SETTING,(ubbu->isOn() ? CSL1("1") : TQString::null)); } -SysInfoWidgetConfig::SysInfoWidgetConfig(QWidget *w, const char *n) : +SysInfoWidgetConfig::SysInfoWidgetConfig(TQWidget *w, const char *n) : ConduitConfigBase(w,n), fConfigWidget(new SysInfoWidget(w)) { @@ -103,12 +103,12 @@ SysInfoWidgetConfig::SysInfoWidgetConfig(QWidget *w, const char *n) : ConduitConfigBase::addAboutPage(fConfigWidget->tabWidget,fAbout); fWidget=fConfigWidget; - QObject::connect(fConfigWidget->fOutputFile,SIGNAL(textChanged(const QString&)), - this,SLOT(modified())); - QObject::connect(fConfigWidget->fTemplateFile,SIGNAL(textChanged(const QString&)), - this,SLOT(modified())); - QObject::connect(fConfigWidget->fOutputType,SIGNAL(clicked(int)), - this,SLOT(modified())); + TQObject::connect(fConfigWidget->fOutputFile,TQT_SIGNAL(textChanged(const TQString&)), + this,TQT_SLOT(modified())); + TQObject::connect(fConfigWidget->fTemplateFile,TQT_SIGNAL(textChanged(const TQString&)), + this,TQT_SLOT(modified())); + TQObject::connect(fConfigWidget->fOutputType,TQT_SIGNAL(clicked(int)), + this,TQT_SLOT(modified())); fConduitName=i18n("System Information"); } @@ -123,8 +123,8 @@ void SysInfoWidgetConfig::commit() SysinfoSettings::setOutputFormat( fConfigWidget->fOutputType->id(fConfigWidget->fOutputType->selected())); - QListViewItem *i = fConfigWidget->fPartsList->firstChild(); - QCheckListItem *ci = dynamic_cast<QCheckListItem *>(i); + TQListViewItem *i = fConfigWidget->fPartsList->firstChild(); + TQCheckListItem *ci = dynamic_cast<TQCheckListItem *>(i); while(ci) { #ifdef DEBUG @@ -139,7 +139,7 @@ void SysInfoWidgetConfig::commit() } updateSetting(ci); i=i->nextSibling(); - ci = dynamic_cast<QCheckListItem *>(i); + ci = dynamic_cast<TQCheckListItem *>(i); } SysinfoSettings::self()->writeConfig(); unmodified(); @@ -151,13 +151,13 @@ void SysInfoWidgetConfig::load() SysinfoSettings::self()->readConfig(); const sysinfoEntry_t *p = sysinfoEntries; - QCheckListItem *i = 0L; + TQCheckListItem *i = 0L; while (p && p->name) { - i = new QCheckListItem(fConfigWidget->fPartsList,i18n(p->name),QCheckListItem::CheckBox); + i = new TQCheckListItem(fConfigWidget->fPartsList,i18n(p->name),TQCheckListItem::CheckBox); // by default let the sysinfo conduit write out all available information i->setOn( p->accessor() ); - i->setText(PART_KEY, QString::number(p-sysinfoEntries)); // store index there + i->setText(PART_KEY, TQString::number(p-sysinfoEntries)); // store index there updateSetting(i); #ifdef DEBUG DEBUGKPILOT << fname << ": Loaded " << p->name @@ -177,8 +177,8 @@ void SysInfoWidgetConfig::load() FUNCTIONSETUP; if (fModified) return true; - QListViewItem *i = fConfigWidget->fPartsList->firstChild(); - QCheckListItem *ci = dynamic_cast<QCheckListItem *>(i); + TQListViewItem *i = fConfigWidget->fPartsList->firstChild(); + TQCheckListItem *ci = dynamic_cast<TQCheckListItem *>(i); while(ci) { @@ -192,7 +192,7 @@ void SysInfoWidgetConfig::load() if (current!=original) return true; i=i->nextSibling(); - ci = dynamic_cast<QCheckListItem *>(i); + ci = dynamic_cast<TQCheckListItem *>(i); } return false; } diff --git a/kpilot/conduits/sysinfoconduit/sysinfo-setup.h b/kpilot/conduits/sysinfoconduit/sysinfo-setup.h index 41e55eb86..400dea3c1 100644 --- a/kpilot/conduits/sysinfoconduit/sysinfo-setup.h +++ b/kpilot/conduits/sysinfoconduit/sysinfo-setup.h @@ -36,7 +36,7 @@ class SysInfoWidget; class SysInfoWidgetConfig : public ConduitConfigBase { public: - SysInfoWidgetConfig(QWidget *parent, const char *); + SysInfoWidgetConfig(TQWidget *parent, const char *); virtual void commit(); virtual void load(); virtual bool isModified() const; |