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 /konqueror/keditbookmarks/bookmarkinfo.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 'konqueror/keditbookmarks/bookmarkinfo.h')
-rw-r--r-- | konqueror/keditbookmarks/bookmarkinfo.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/konqueror/keditbookmarks/bookmarkinfo.h b/konqueror/keditbookmarks/bookmarkinfo.h index 51661959a..9894fec1d 100644 --- a/konqueror/keditbookmarks/bookmarkinfo.h +++ b/konqueror/keditbookmarks/bookmarkinfo.h @@ -24,7 +24,7 @@ #include "commands.h" #include <kbookmark.h> -#include <qwidget.h> +#include <tqwidget.h> #include <klineedit.h> class QTimer; @@ -32,16 +32,16 @@ class QTimer; class BookmarkLineEdit : public KLineEdit { Q_OBJECT public: - BookmarkLineEdit( QWidget * ); + BookmarkLineEdit( TQWidget * ); public slots: virtual void cut (); }; -class BookmarkInfoWidget : public QWidget { +class BookmarkInfoWidget : public TQWidget { Q_OBJECT public: - BookmarkInfoWidget(QWidget * = 0, const char * = 0); + BookmarkInfoWidget(TQWidget * = 0, const char * = 0); void showBookmark(const KBookmark &bk); void saveBookmark(const KBookmark &bk); KBookmark bookmark() { return m_bk; } @@ -50,9 +50,9 @@ public: void updateStatus(); public slots: - void slotTextChangedURL(const QString &); - void slotTextChangedTitle(const QString &); - void slotTextChangedComment(const QString &); + void slotTextChangedURL(const TQString &); + void slotTextChangedTitle(const TQString &); + void slotTextChangedComment(const TQString &); // _The deal with all those commitChanges() calls_ // First a short example how all the components @@ -99,7 +99,7 @@ private: NodeEditCommand *titlecmd; EditCommand *urlcmd; NodeEditCommand *commentcmd; - QTimer * timer; + TQTimer * timer; BookmarkLineEdit *m_title_le, *m_url_le, *m_comment_le; KLineEdit *m_visitdate_le, *m_credate_le, |