diff options
Diffstat (limited to 'kontact/plugins/knotes')
-rw-r--r-- | kontact/plugins/knotes/knotes_part.cpp | 4 | ||||
-rw-r--r-- | kontact/plugins/knotes/knotes_part.h | 2 | ||||
-rw-r--r-- | kontact/plugins/knotes/knotes_part_p.h | 8 | ||||
-rw-r--r-- | kontact/plugins/knotes/knotetip.cpp | 4 | ||||
-rw-r--r-- | kontact/plugins/knotes/knotetip.h | 2 | ||||
-rw-r--r-- | kontact/plugins/knotes/summarywidget.cpp | 4 | ||||
-rw-r--r-- | kontact/plugins/knotes/summarywidget.h | 2 |
7 files changed, 13 insertions, 13 deletions
diff --git a/kontact/plugins/knotes/knotes_part.cpp b/kontact/plugins/knotes/knotes_part.cpp index b4b0f7786..004865dce 100644 --- a/kontact/plugins/knotes/knotes_part.cpp +++ b/kontact/plugins/knotes/knotes_part.cpp @@ -38,8 +38,8 @@ #include "knotetip.h" -KNotesPart::KNotesPart( TQObject *tqparent, const char *name ) - : DCOPObject( "KNotesIface" ), KParts::ReadOnlyPart( tqparent, name ), +KNotesPart::KNotesPart( TQObject *parent, const char *name ) + : DCOPObject( "KNotesIface" ), KParts::ReadOnlyPart( parent, name ), mNotesView( new KNotesIconView() ), mNoteTip( new KNoteTip( mNotesView ) ), mNoteEditDlg( 0 ), diff --git a/kontact/plugins/knotes/knotes_part.h b/kontact/plugins/knotes/knotes_part.h index 9bc4e8472..4ab1be70b 100644 --- a/kontact/plugins/knotes/knotes_part.h +++ b/kontact/plugins/knotes/knotes_part.h @@ -50,7 +50,7 @@ class KNotesPart : public KParts::ReadOnlyPart, virtual public KNotesIface TQ_OBJECT public: - KNotesPart( TQObject *tqparent = 0, const char *name = 0 ); + KNotesPart( TQObject *parent = 0, const char *name = 0 ); ~KNotesPart(); bool openFile(); diff --git a/kontact/plugins/knotes/knotes_part_p.h b/kontact/plugins/knotes/knotes_part_p.h index 9f8a4bb83..a6e23d899 100644 --- a/kontact/plugins/knotes/knotes_part_p.h +++ b/kontact/plugins/knotes/knotes_part_p.h @@ -60,8 +60,8 @@ class KNotesIconViewItem : public KIconViewItem { public: - KNotesIconViewItem( KIconView *tqparent, KCal::Journal *journal ) - : KIconViewItem( tqparent ), + KNotesIconViewItem( KIconView *parent, KCal::Journal *journal ) + : KIconViewItem( parent ), mJournal( journal ) { setRenameEnabled( true ); @@ -118,9 +118,9 @@ class KNoteEditDlg : public KDialogBase, virtual public KXMLGUIClient TQ_OBJECT public: - KNoteEditDlg( TQWidget *tqparent = 0, const char *name = 0 ) + KNoteEditDlg( TQWidget *parent = 0, const char *name = 0 ) : KDialogBase( Plain, i18n( "Edit Note" ), Ok | Cancel, Ok, - tqparent, name, true, true ) + parent, name, true, true ) { // this dialog is modal to prevent one from editing the same note twice in two // different windows diff --git a/kontact/plugins/knotes/knotetip.cpp b/kontact/plugins/knotes/knotetip.cpp index 9e2609fc2..79a45d21e 100644 --- a/kontact/plugins/knotes/knotetip.cpp +++ b/kontact/plugins/knotes/knotetip.cpp @@ -40,11 +40,11 @@ #include "knotes_part_p.h" -KNoteTip::KNoteTip( KIconView *tqparent ) +KNoteTip::KNoteTip( KIconView *parent ) : TQFrame( 0, 0, WX11BypassWM | // this will make Seli happy >:-P WStyle_Customize | WStyle_NoBorder | WStyle_Tool | WStyle_StaysOnTop ), mFilter( false ), - mView( tqparent ), + mView( parent ), mNoteIVI( 0 ), mPreview( new TQTextEdit( this ) ) { diff --git a/kontact/plugins/knotes/knotetip.h b/kontact/plugins/knotes/knotetip.h index ca342fa43..221720224 100644 --- a/kontact/plugins/knotes/knotetip.h +++ b/kontact/plugins/knotes/knotetip.h @@ -41,7 +41,7 @@ class KNotesIconViewItem; class KNoteTip : public TQFrame { public: - KNoteTip( KIconView *tqparent ); + KNoteTip( KIconView *parent ); ~KNoteTip(); void setNote( KNotesIconViewItem *item ); diff --git a/kontact/plugins/knotes/summarywidget.cpp b/kontact/plugins/knotes/summarywidget.cpp index c0e1ef402..2bd0456ca 100644 --- a/kontact/plugins/knotes/summarywidget.cpp +++ b/kontact/plugins/knotes/summarywidget.cpp @@ -45,8 +45,8 @@ #include "summarywidget.h" KNotesSummaryWidget::KNotesSummaryWidget( Kontact::Plugin *plugin, - TQWidget *tqparent, const char *name ) - : Kontact::Summary( tqparent, name ), mLayout( 0 ), mPlugin( plugin ) + TQWidget *parent, const char *name ) + : Kontact::Summary( parent, name ), mLayout( 0 ), mPlugin( plugin ) { TQVBoxLayout *mainLayout = new TQVBoxLayout( this, 3, 3 ); diff --git a/kontact/plugins/knotes/summarywidget.h b/kontact/plugins/knotes/summarywidget.h index 97ccd0940..088bdea3b 100644 --- a/kontact/plugins/knotes/summarywidget.h +++ b/kontact/plugins/knotes/summarywidget.h @@ -46,7 +46,7 @@ class KNotesSummaryWidget : public Kontact::Summary TQ_OBJECT public: - KNotesSummaryWidget( Kontact::Plugin *plugin, TQWidget *tqparent, const char *name = 0 ); + KNotesSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name = 0 ); void updateSummary( bool force = false ) { Q_UNUSED( force ); updateView(); } |