diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/samba/kcmsambalog.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/samba/kcmsambalog.h')
-rw-r--r-- | kcontrol/samba/kcmsambalog.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/kcontrol/samba/kcmsambalog.h b/kcontrol/samba/kcmsambalog.h index 03e22f872..d0b427d48 100644 --- a/kcontrol/samba/kcmsambalog.h +++ b/kcontrol/samba/kcmsambalog.h @@ -23,12 +23,12 @@ #ifndef kcmsambalog_h_included #define kcmsambalog_h_included -#include <qlabel.h> -#include <qcstring.h> -#include <qcheckbox.h> -#include <qpushbutton.h> -#include <qlistview.h> -#include <qevent.h> +#include <tqlabel.h> +#include <tqcstring.h> +#include <tqcheckbox.h> +#include <tqpushbutton.h> +#include <tqlistview.h> +#include <tqevent.h> #include <kconfig.h> #include <kurlrequester.h> @@ -39,7 +39,7 @@ class LogView: public QWidget { Q_OBJECT public: - LogView(QWidget *parent=0, KConfig *config=0, const char *name=0); + LogView(TQWidget *parent=0, KConfig *config=0, const char *name=0); virtual ~LogView() {}; void saveSettings(); void loadSettings(); @@ -47,26 +47,26 @@ class LogView: public QWidget KConfig *configFile; int filesCount, connectionsCount; KURLRequester logFileName; - QLabel label; - QListView viewHistory; - QCheckBox showConnOpen, showConnClose, showFileOpen, showFileClose; - QPushButton updateButton; + TQLabel label; + TQListView viewHistory; + TQCheckBox showConnOpen, showConnClose, showFileOpen, showFileClose; + TQPushButton updateButton; private slots: void updateList(); signals: - void contentsChanged(QListView* list, int nrOfFiles, int nrOfConnections); + void contentsChanged(TQListView* list, int nrOfFiles, int nrOfConnections); }; class QListViewItemX:public QListViewItem { public: //a faster constructor saves a lot time - QListViewItemX( QListView * parent, + QListViewItemX( TQListView * parent, const char *c0, const char *c1 = 0, const char *c2 = 0, const char *c3 = 0, const char *c4 = 0, const char *c5 = 0, const char *c6 = 0, const char *c7 = 0 ) - :QListViewItem(parent) + :TQListViewItem(parent) { setText( 0, c0 ); setText( 1, c1 ); |