diff options
Diffstat (limited to 'kontact/plugins/knotes/knotes_part.cpp')
-rw-r--r-- | kontact/plugins/knotes/knotes_part.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kontact/plugins/knotes/knotes_part.cpp b/kontact/plugins/knotes/knotes_part.cpp index ef70e8f56..a7864c423 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 *parent, const char *name ) - : DCOPObject( "KNotesIface" ), KParts::ReadOnlyPart( parent, name ), +KNotesPart::KNotesPart( TQObject *tqparent, const char *name ) + : DCOPObject( "KNotesIface" ), KParts::ReadOnlyPart( tqparent, name ), mNotesView( new KNotesIconView() ), mNoteTip( new KNoteTip( mNotesView ) ), mNoteEditDlg( 0 ), @@ -233,7 +233,7 @@ TQString KNotesPart::name( const TQString& id ) const if ( note ) return note->text(); else - return TQString::null; + return TQString(); } TQString KNotesPart::text( const TQString& id ) const @@ -242,7 +242,7 @@ TQString KNotesPart::text( const TQString& id ) const if ( note ) return note->journal()->description(); else - return TQString::null; + return TQString(); } void KNotesPart::setName( const TQString& id, const TQString& newName ) @@ -328,7 +328,7 @@ void KNotesPart::popupRMB( TQIconViewItem *item, const TQPoint& pos ) void KNotesPart::slotOnItem( TQIconViewItem *i ) { - // TODO: disable (i.e. setNote( TQString::null )) when mouse button pressed + // TODO: disable (i.e. setNote( TQString() )) when mouse button pressed KNotesIconViewItem *item = static_cast<KNotesIconViewItem *>( i ); mNoteTip->setNote( item ); |