diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /vcs/subversion/svn_logviewwidget.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'vcs/subversion/svn_logviewwidget.h')
-rw-r--r-- | vcs/subversion/svn_logviewwidget.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/vcs/subversion/svn_logviewwidget.h b/vcs/subversion/svn_logviewwidget.h index e1738195..7f9a6d4d 100644 --- a/vcs/subversion/svn_logviewwidget.h +++ b/vcs/subversion/svn_logviewwidget.h @@ -24,11 +24,11 @@ #include "subversion_widget.h" #include "svn_logviewoptiondlgbase.h" // #include "subversion_part.h" -#include <qvaluelist.h> -#include <qlistview.h> +#include <tqvaluelist.h> +#include <tqlistview.h> class subversionPart; // class QWidget; -#include <qwidget.h> +#include <tqwidget.h> class KTextEdit; class QSplitter; class QGridLayout; @@ -38,48 +38,48 @@ class SvnLogHolder{ public: SvnLogHolder(){}; ~SvnLogHolder(){}; - QString author; - QString date; - QString logMsg; - QString pathList; - QString rev; + TQString author; + TQString date; + TQString logMsg; + TQString pathList; + TQString rev; }; -class SvnLogViewWidget : public /*SvnLogViewWidgetBase*/ QWidget { +class SvnLogViewWidget : public /*SvnLogViewWidgetBase*/ TQWidget { Q_OBJECT public: - SvnLogViewWidget(subversionPart *part, QWidget *parent); + SvnLogViewWidget(subversionPart *part, TQWidget *parent); virtual ~SvnLogViewWidget(); - void setLogResult( QValueList<SvnLogHolder> *loglist ); - void setRequestedUrl( QString url ); + void setLogResult( TQValueList<SvnLogHolder> *loglist ); + void setRequestedUrl( TQString url ); protected slots: - void slotClicked( QListViewItem* item ); - void contextMenuRequested( QListViewItem *item, const QPoint & pos, int col ); + void slotClicked( TQListViewItem* item ); + void contextMenuRequested( TQListViewItem *item, const TQPoint & pos, int col ); void blameThis(); void diffToPrevious(); private: - QString m_reqUrl; + TQString m_reqUrl; subversionPart *m_part; SvnLogViewItem* m_ctxLogItem; - QSplitter* splitter1; - QListView* listView1; + TQSplitter* splitter1; + TQListView* listView1; KTextEdit* textEdit1; - QGridLayout* m_layout; + TQGridLayout* m_layout; }; class SvnLogViewOptionDlg : public SvnLogViewOptionDlgBase { Q_OBJECT public: - SvnLogViewOptionDlg(QWidget *parent=0, const char* name=0, bool modal=TRUE, WFlags f=0); + SvnLogViewOptionDlg(TQWidget *parent=0, const char* name=0, bool modal=TRUE, WFlags f=0); ~SvnLogViewOptionDlg(); int revstart(); - QString revKindStart(); + TQString revKindStart(); int revend(); - QString revKindEnd(); + TQString revKindEnd(); bool strictNode(); public slots: void reinstallRevisionSpecifiers(); |