diff options
Diffstat (limited to 'src/dpkg.h')
-rw-r--r-- | src/dpkg.h | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -21,30 +21,31 @@ class Dpkg : public PackageManager { Q_OBJECT + TQ_OBJECT - typedef void (Dpkg::*ReceiveMethod) (const QStringList& lines); + typedef void (Dpkg::*ReceiveMethod) (const TQStringList& lines); ReceiveMethod m_receive; KProcIO m_process; - QString m_buffer; + TQString m_buffer; private slots: void readReady(KProcIO* io); private: - void receiveSearch(const QStringList& line); - void receiveList(const QStringList& line); + void receiveSearch(const TQStringList& line); + void receiveList(const TQStringList& line); public: - Dpkg(QObject *parent = 0, const char *name = 0); + Dpkg(TQObject *tqparent = 0, const char *name = 0); ~Dpkg(); - virtual bool list(const QString& package); - virtual bool search(const QString& file); + virtual bool list(const TQString& package); + virtual bool search(const TQString& file); virtual int capabilities(int query) const; - virtual QString getOnlineForm(); + virtual TQString getOnlineForm(); }; #endif |