diff options
Diffstat (limited to 'sip/kfile/kopenwith.sip')
-rw-r--r-- | sip/kfile/kopenwith.sip | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/sip/kfile/kopenwith.sip b/sip/kfile/kopenwith.sip index 2a8f2f9..4d83a21 100644 --- a/sip/kfile/kopenwith.sip +++ b/sip/kfile/kopenwith.sip @@ -24,7 +24,7 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -class KOpenWithDlg : QDialog +class KOpenWithDlg : TQDialog { %TypeHeaderCode #include <kopenwith.h> @@ -32,15 +32,15 @@ class KOpenWithDlg : QDialog public: - KOpenWithDlg (const KURL::List&, QWidget* /TransferThis/ = 0); - KOpenWithDlg (const KURL::List&, const QString&, const QString&, QWidget* /TransferThis/ = 0); - KOpenWithDlg (const QString&, const QString&, QWidget* /TransferThis/ = 0); + KOpenWithDlg (const KURL::List&, TQWidget* /TransferThis/ = 0); + KOpenWithDlg (const KURL::List&, const TQString&, const TQString&, TQWidget* /TransferThis/ = 0); + KOpenWithDlg (const TQString&, const TQString&, TQWidget* /TransferThis/ = 0); %If ( KDE_3_1_0 - ) - KOpenWithDlg (QWidget* /TransferThis/ = 0); + KOpenWithDlg (TQWidget* /TransferThis/ = 0); %End - QString text (); + TQString text (); %If ( KDE_3_2_0 - ) void hideNoCloseOnExit (); @@ -56,8 +56,8 @@ public: public slots: void slotClear (); - void slotSelected (const QString&, const QString&); - void slotHighlighted (const QString&, const QString&); + void slotSelected (const TQString&, const TQString&); + void slotHighlighted (const TQString&, const TQString&); void slotTextChanged (); void slotTerminalToggled (bool); void slotDbClick (); @@ -68,7 +68,7 @@ protected slots: protected: void setServiceType (const KURL::List&); - void init (const QString&, const QString&); + void init (const TQString&, const TQString&); }; // class KOpenWithDlg @@ -89,7 +89,7 @@ public: %If ( - KDE_3_1_0 ) -class KAppTreeListItem : QListViewItem +class KAppTreeListItem : TQListViewItem { %TypeHeaderCode #include <kopenwith.h> @@ -97,12 +97,12 @@ class KAppTreeListItem : QListViewItem protected: - QString key (int, bool) const; - void init (const QPixmap&, bool, bool, QString, QString); + TQString key (int, bool) const; + void init (const TQPixmap&, bool, bool, TQString, TQString); public: - KAppTreeListItem (KListView* /TransferThis/, const QString&, const QPixmap&, bool, bool, QString, QString); - KAppTreeListItem (QListViewItem* /TransferThis/, const QString&, const QPixmap&, bool, bool, QString, QString); + KAppTreeListItem (KListView* /TransferThis/, const TQString&, const TQPixmap&, bool, bool, TQString, TQString); + KAppTreeListItem (TQListViewItem* /TransferThis/, const TQString&, const TQPixmap&, bool, bool, TQString, TQString); bool isDirectory (); protected: @@ -124,21 +124,21 @@ class KApplicationTree : KListView public: - KApplicationTree (QWidget* /TransferThis/); - void addDesktopGroup (QString, KAppTreeListItem* = 0); + KApplicationTree (TQWidget* /TransferThis/); + void addDesktopGroup (TQString, KAppTreeListItem* = 0); KAppTreeListItem* it; bool isDirSel (); protected: - void resizeEvent (QResizeEvent*); + void resizeEvent (TQResizeEvent*); public slots: - void slotItemHighlighted (QListViewItem*); - void slotSelectionChanged (QListViewItem*); + void slotItemHighlighted (TQListViewItem*); + void slotSelectionChanged (TQListViewItem*); signals: - void selected (const QString&, const QString&); - void highlighted (const QString&, const QString&); + void selected (const TQString&, const TQString&); + void highlighted (const TQString&, const TQString&); }; // class KApplicationTree |